Re: [GRASS-dev] compilation of grass on AIX 7.1

2013-07-29 Thread Hamish
Vaclav wrote: GCC warns me also about format not a string literal and no format arguments. I remember this was once discussed on the ML but I'm not sure what the result was: the call is correct but the G_warning function needs some GCC attributes to specify what it is? Glynn: G_warning()

Re: [GRASS-dev] [GRASS GIS] #1866: broken db driver communication in winGRASS 7

2013-07-29 Thread GRASS GIS
#1866: broken db driver communication in winGRASS 7 --+- Reporter: martinl | Owner: grass-dev@… Type: defect| Status: new Priority: normal

Re: [GRASS-dev] [GRASS GIS] #1866: broken db driver communication in winGRASS 7

2013-07-29 Thread Markus Neteler
On Mon, Jul 29, 2013 at 11:52 AM, GRASS GIS t...@osgeo.org wrote: ... We're talking about changes to error messages to make them more useful for users. I don't think this kind of backport has to be held back... I generally agree. Let's have these kind of corrections in 6.4.3 instead of

Re: [GRASS-dev] interp_type: cubic | bicubic

2013-07-29 Thread Markus Neteler
On Tue, May 21, 2013 at 10:54 AM, Martin Landa landa.mar...@gmail.com wrote: 2013/5/21 Markus Neteler nete...@osgeo.org: It would be important to also update the HTML pages: cd dist.x86_64-unknown-linux-gnu/docs/html grep 'bilinear\|bicubic' * | wc -l 53 otherwise it becomes

[GRASS-dev] G7: landsat_met.c:103: undefined reference to `chrncpy'

2013-07-29 Thread Markus Neteler
Hi, I changed my compiler flags to catch more potential errrors and got this one: [neteler@north i.landsat.toar]$ make gcc -g -Wall -fno-common -fexceptions -std=gnu99 -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector -m64 -mtune=generic

Re: [GRASS-dev] G7: landsat_met.c:103: undefined reference to `chrncpy'

2013-07-29 Thread Hamish
Hi, I think it needs additional LDFLAGS too. here's an example from the debian/unstable build include /usr/share/hardening-includes/hardening.make CFLAGS=$(shell dpkg-buildflags --get CFLAGS) LDFLAGS=$(shell dpkg-buildflags --get LDFLAGS) # - CFLAGS=-g -O2 -fstack-protector

Re: [GRASS-dev] [GRASS GIS] #1866: broken db driver communication in winGRASS 7

2013-07-29 Thread GRASS GIS
#1866: broken db driver communication in winGRASS 7 ---+ Reporter: martinl | Owner: grass-dev@… Type: defect| Status: closed Priority: normal|

[GRASS-dev] [GRASS GIS] #2048: i.pansharpen limited to 8-bit imagery

2013-07-29 Thread GRASS GIS
#2048: i.pansharpen limited to 8-bit imagery ---+ Reporter: nikosa | Owner: grass-dev@… Type: defect

Re: [GRASS-dev] [GRASS GIS] #2047: GRASS doesn't build on FreeBSD

2013-07-29 Thread GRASS GIS
#2047: GRASS doesn't build on FreeBSD -+-- Reporter: lbartoletti | Owner: grass-dev@… Type: defect | Status: new Priority: blocker | Milestone: 6.4.3

Re: [GRASS-dev] compilation of grass on AIX 7.1

2013-07-29 Thread Glynn Clements
Hamish wrote: is it appropriate to backport r57238 to 6.x? Yes for 6.5, probably not for 6.4 as it isn't urgent; the change only suppresses warnings about potential issues, it doesn't fix actual bugs. there are also quite a few like G_fatal_error(buff);, can anything be done in the lib fn

Re: [GRASS-dev] GCP Manager available as g.gui.gcp

2013-07-29 Thread Nikos Alexandris
Vaclav Petras wrote: Hi list. It is possible to run GCP Manager as g.gui.gcp standalone module since r57234. `make distclean` or `rm -r dist.../etc/gui/wxpython` is needed. So far g.gui.gcp has no parameters but they can be added in the future as an alternative to wizard. Nice! I would

[GRASS-dev] [GRASS GIS] #2049: Alternative vertical output for v.db.select

2013-07-29 Thread GRASS GIS
#2049: Alternative vertical output for v.db.select --+- Reporter: nikosa| Owner: grass-dev@… Type: enhancement | Status: new

Re: [GRASS-dev] [GRASS GIS] #1997: i.landsat.toar for grass-dev is missing the option for landsat8

2013-07-29 Thread Nikos Alexandris
Niko, would you mind checking it this ticket is still open for you? Cheers, Nikos On Saturday 29 of June 2013 13:36:42 GRASS GIS wrote: #1997: i.landsat.toar for grass-dev is missing the option for landsat8 +---

Re: [GRASS-dev] G7: landsat_met.c:103: undefined reference to `chrncpy'

2013-07-29 Thread Markus Neteler
On Mon, Jul 29, 2013 at 1:16 PM, Hamish hamis...@yahoo.com wrote: Hi, I think it needs additional LDFLAGS too. I tried to no avail. But MarkusM spotted this change which helps: Index: landsat_met.c === --- landsat_met.c

Re: [GRASS-dev] Python handling in winGRASS7 [was: Re: GRASS GIS 7 tech-preview release preparations]

2013-07-29 Thread Moritz Lennert
On 26/07/13 20:18, Glynn Clements wrote: Moritz Lennert wrote: Would it be a possible option to implement only a) and document the fact that the user has to take care of creating a working Python installation herself if they want b) ? In order to be able to execute scripts via the command

Re: [GRASS-dev] Custom GRASS command line prompt

2013-07-29 Thread Markus Neteler
On Sun, Jul 28, 2013 at 4:50 AM, Hamish hamis...@yahoo.com wrote: ... fwiw here's what I have there wrt the prompt: SHORT_VER=`echo $GRASS_VERSION | cut -f1,2 -d. | sed -e 's/\.//'` export PS1='G$SHORT_VER:\W ' export HISTSIZE=3000 Personally I would suggest 3 lines here (I use 50k).

Re: [GRASS-dev] Python handling in winGRASS7 [was: Re: GRASS GIS 7 tech-preview release preparations]

2013-07-29 Thread Moritz Lennert
On 27/07/13 20:08, Glynn Clements wrote: Helmut Kudrnovsky wrote: Python Launcher for Windows is a interesting concept for switching between python versions or for pointing to a specific python interpreter. shebang + py.ini seems to work (see tests in the ticket). IIUC, by this concept a

Re: [GRASS-dev] Custom GRASS command line prompt

2013-07-29 Thread Nikos Alexandris
Hamish: ... fwiw here's what I have there wrt the prompt: SHORT_VER=`echo $GRASS_VERSION | cut -f1,2 -d. | sed -e 's/\.//'` export PS1='G$SHORT_VER:\W ' export HISTSIZE=3000 Markus Neteler wrote: Personally I would suggest 3 lines here (I use 50k). Better save than sorry :-)

[GRASS-dev] [GRASS GIS] #2050: After GRASS started xml.etree.ElementTree raises ParseError when clicking any GUI element on Win 7 Simplified Chinese

2013-07-29 Thread GRASS GIS
#2050: After GRASS started xml.etree.ElementTree raises ParseError when clicking any GUI element on Win 7 Simplified Chinese --+- Reporter: lazywalking | Owner: grass-dev@…

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2048: i.pansharpen limited to 8-bit imagery

2013-07-29 Thread GRASS GIS
#2048: i.pansharpen limited to 8-bit imagery ---+ Reporter: nikosa | Owner: grass-dev@… Type: defect

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #1778: Typing in g.region without parameters does not open a g.region window

2013-07-29 Thread GRASS GIS
#1778: Typing in g.region without parameters does not open a g.region window +--- Reporter: pvanbosgeo | Owner: grass-dev@… Type: defect | Status: new

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] Python handling in winGRASS7 [was: Re: GRASS GIS 7 tech-preview release preparations]

2013-07-29 Thread Moritz Lennert
On 29/07/13 18:44, Moritz Lennert wrote: - It thus seems to me that the safest path is the one checking during installation whether a Python 2.7 installation is know in the registry, and if that is not the case, to create a registry entry that points to the GRASS installation Just for the

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] Python handling in winGRASS7 [was: Re: GRASS GIS 7 tech-preview release preparations]

2013-07-29 Thread Moritz Lennert
On 29/07/13 21:15, Moritz Lennert wrote: On 29/07/13 18:44, Moritz Lennert wrote: - It thus seems to me that the safest path is the one checking during installation whether a Python 2.7 installation is know in the registry, and if that is not the case, to create a registry entry that points to

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2039: Startup Error

2013-07-29 Thread GRASS GIS
#2039: Startup Error --+- Reporter: akdeakin | Owner: grass-dev@… Type: defect| Status: new Priority: normal| Milestone: 6.4.4

Re: [GRASS-dev] [GRASS GIS] #2048: i.pansharpen limited to 8-bit imagery

2013-07-29 Thread GRASS GIS
#2048: i.pansharpen limited to 8-bit imagery ---+ Reporter: nikosa | Owner: grass-dev@… Type: defect

Re: [GRASS-dev] [GRASS GIS] #2048: i.pansharpen limited to 8-bit imagery

2013-07-29 Thread GRASS GIS
#2048: i.pansharpen limited to 8-bit imagery ---+ Reporter: nikosa | Owner: grass-dev@… Type: defect

Re: [GRASS-dev] [GRASS GIS] #2048: i.pansharpen limited to 8-bit imagery

2013-07-29 Thread GRASS GIS
#2048: i.pansharpen limited to 8-bit imagery ---+ Reporter: nikosa | Owner: grass-dev@… Type: defect

Re: [GRASS-dev] [GRASS GIS] #2048: i.pansharpen limited to 8-bit imagery

2013-07-29 Thread GRASS GIS
#2048: i.pansharpen limited to 8-bit imagery ---+ Reporter: nikosa | Owner: grass-dev@… Type: defect

Re: [GRASS-dev] Custom GRASS command line prompt

2013-07-29 Thread Hamish
Hamish wrote: # example of adding an RGB border color with a #RRGGBB code: echo -ne \033]11;#53186f\007 ... But I think changing the border with a RGB color per mapset or location would scale better if you were having a different color for each mapset/location. Or, for the MASK present I'd

Re: [GRASS-dev] Custom GRASS command line prompt

2013-07-29 Thread Hamish
Hamish wrote: # example of adding an RGB border color with a #RRGGBB code: echo -ne \033]11;#53186f\007 ... But I think changing the border with a RGB color per mapset or location would scale better if you were having a different color for each mapset/location. Or, for the MASK present I'd

Re: [GRASS-dev] [GRASS GIS] #2048: i.pansharpen limited to 8-bit imagery

2013-07-29 Thread GRASS GIS
#2048: i.pansharpen limited to 8-bit imagery ---+ Reporter: nikosa | Owner: grass-dev@… Type: defect