Version 170 (modified by martinl, 2 years ago)

--

Compiling GRASS on MS-Windows

Dependencies required for building with MinGW

Compiling your own copy of GRASS is greatly simplified by using the OSGeo4W directory structure to install most dependencies and downloading the rest from a few other locations. Follow the steps below to set up the build environment for GRASS.

Install the OSGeo4W directory structure

OSGeo4W has several of the required dependencies for compiling GRASS:

1. Download the OSGeo4W installer from  here.

2. Run the installer.

3. Select Advanced Install, and Next.

4. Set the install directory to c:\OSGeo4W (other directories or fine if there are no spaces in the path but make sure to adjust the instructions below (?)). The MSys maintainers have made it clear that they  will not support spaces in path names nor accept patches fixing those issues. With some patches to msys.bat however it is possible to install a built GRASS into C:\Program Files\.

5. Select grass from the desktop section (this is a binary but we'll compile from source later).

6. Also select:

  • Commandline_Utilities
    • gpsbabel
  • Libs:
    • fftw-devel
    • freetype-devel
    • freetype-devel-mingw
    • gsl-libs
    • gsl-devel
    • libpng-devel
    • libpng-devel-mingw
    • libtiff-devel
    • libxdr
    • libxml2
    • pdcurses-devel
    • tcltk-devel
    • zlib-devel

7. Click Next, the selected packages and their required subpackages will be downloaded and installed automatically.

Install the environment for compilation (MingW)

1. Run msys (there should be an icon on the desktop)

2. Type:

mkdir /c/osgeo4w/apps/msys/osgeo4w

3. Copy c:\osgeo4w\apps\msys\etc\fstab.sample to c:\osgeo4w\apps\msys\etc\fstab (without .sample)

cd /c/OSGeo4W/apps/msys/etc/
cp fstab.sample fstab

4. Open c:\osgeo4w\apps\msys\etc\fstab

5. At line 16, change:

c:/mingw		/mingw
c:/ActiveState/perl	/perl

To:

c:/osgeo4w/	/osgeo4w

6. Download the MinGW packages: ( updates may be found here)

7. Unpack all to c:\osgeo4w

8. Download the latest make program compliant with the OSGeo4W framework from  here (future updates may be found  here)

9. Unpack to c:\osgeo4w\apps\msys

10. Close and re-open msys to reload the settings.

Pre-built Binaries

Download: (updates may be found  here)

Unpack all to c:\osgeo4w

Compiling and Installing GRASS (6.4.0)

1. Download the latest weekly snapshot GRASS 6.4.0 source code from here (for latest SVN version, see below)

2. Unpack to c:\osgeo4w\usr\src

3. To compile, type in MSYS console:

cd /osgeo4w/usr/src/grass-6.4xxx (change to dir of the version you downloaded)
./mswindows/osgeo4w/package.sh

4. Check error.log for any error messages and mswindows/osgeo4w/package.log if you're having problems.

GRASS should now be installed in c:\osgeo4w\apps\grass\grass-6.4.0

Usage

To start GRASS use the icon on the desktop.

OR, if you want to be able to use the command line from within GRASS

1. Type in MSYS console:

/osgeo4w/apps/grass/bin/grass64

Or to use the new wxpython GUI:

/osgeo4w/apps/grass/bin/grass64 -wxpython

Compiling and Installing Development Versions of GRASS

Optional Installation of Subversion

The GRASS source tree is stored in an  online repository called Subversion. Rather than downloading source trees from the website, Subversion lets you keep up to date, and manage your modifications, with simple commands or a graphical tool. For details, see here.

A) Command line based:

  1. Download Collabnet Subversion Command-Line Client (1.6) from  here. (You'll have to register on Collabnet)
  1. Run the subversion installer and install it to a path without spaces such as c:/Subversion
  1. Open c:\osgeo4w\etc\ini\msys.bat and at line 1 add the path to your subversion folder, e.g. change:
    PATH %PATH%;%OSGEO4W_ROOT%\apps\msys\bin
    
    to:
    PATH %PATH%;%OSGEO4W_ROOT%\apps\msys\bin;/c/Subversion
    

B) Graphical user interface based:

Alternatively, get TortoiseSVN, a plugin for Windows Explorer, which can be used for managing the local source tree. Download  here.

Grass-6.4.svn (releasebranch_64)

1. Download the grass-6.4.svn source tree with:

  • Subversion (also see here)
    cd /osgeo4w/usr/src
    svn co https://svn.osgeo.org/grass/grass/branches/releasebranch_6_4/ grass64_release
    cd /osgeo4w/usr/src/grass64_release
    

OR

  • Download a weekly snapshot from here and unpack to /osgeo4w/usr/src

2. See below for compilation and installation.

3. After installation, start with:

/osgeo4w/apps/grass/bin/grass64

Grass-6.5.svn (develbranch_6)

1. Download the grass-6.5.svn source tree with:

  • Subversion (also see here)
    cd /osgeo4w/usr/src
    svn co https://svn.osgeo.org/grass/grass/branches/develbranch_6/ grass6_devel
    cd /osgeo4w/usr/src/grass6_devel
    

OR

  • Download a weekly snapshot from here

2. See below for compilation and installation.

3. After installation, start with:

/osgeo4w/apps/grass/bin/grass65

Grass-7.0.svn (trunk)

1. Download the grass-7.0.svn source tree with:

  • Subversion (also see here)
    cd /osgeo4w/usr/src
    svn checkout https://svn.osgeo.org/grass/grass/trunk grass_trunk
    cd /osgeo4w/usr/src/grass_trunk
    

OR

  • Download a weekly snapshot from here

2. Open c:\osgeo4w\etc\ini\msys.bat and at line 3 add:

set PYTHONPATH=%OSGEO4W_ROOT%\apps\Python25

3. See below for compilation and installation.

4. After installation, start with:

/osgeo4w/apps/grass/bin/grass70

Compiling and Installing

To compile, type in MSYS console:

./mswindows/osgeo4w/package.sh

To update your source tree later using subversion and recompile type:

make distclean
svn up
rm mswindows/osgeo4w/configure-stamp
./mswindows/osgeo4w/package.sh

Troubleshooting

Here are a few common problems and their solutions:

With module...If you get the errorDo the following
r.mapcalc, r.univar, or raster3d/baseNo rule to make target ... needed by 'progs'Update msys's make (see step 8 in the MinGW section above)
scripts/*ImportError: No module named grassFix PYTHONPATH to *nix-style (eg. PYTHONPATH=/osego4w/apps/Python25)

Creating a WinGRASS Installer

The instructions for creating a WinGRASS native installer (self-contained package installer) using the scripts contained in the mswindows directory. In order to avoid mistakes or misunderstandings, we highly recommend to follow each step and command exactly as they are written in this document.

Install OSGeo4w Tree and Compile GRASS

First of all download the OSGeo4W installer, install the required dependencies, and build GRASS from source. Do not move on to step two until you have successfully tested your new version of GRASS.

Create a GRASS self-contained Package

1. Copy all the content of the mswindows directory to a temporary directory, for example c:\temp.

2. Edit file c:\temp\GRASS-Packager.bat to reflect the paths to your OSGeo4W tree and the GRASS version being packaged. Default settings is:

set OSGEO4W_DIR=c:\osgeo4w

Grass64-Release-Version:

set PACKAGE_DIR=.\GRASS-64-Release-Package
set GRASS_PREFIX=%OSGEO4W_DIR%\apps\grass\grass-6.4.1

Grass64-Devel-Version:

set PACKAGE_DIR=.\GRASS-64-Devel-Package
set GRASS_PREFIX=%OSGEO4W_DIR%\apps\grass\grass-6.4.1svn

Grass65-Devel-Version:

set PACKAGE_DIR=.\GRASS-65-Devel-Package
set GRASS_PREFIX=%OSGEO4W_DIR%\apps\grass\grass-6.5.svn

Grass70-Devel-Version:

set PACKAGE_DIR=.\GRASS-70-Devel-Package
set GRASS_PREFIX=%OSGEO4W_DIR%\apps\grass\grass-7.0.svn

3. Launch the file c:\temp\GRASS-Packager.bat and select version to be packaged.

4. When finished, you should have a GRASS self-contained release package in c:\temp\GRASS-<Version>-<Release/Dev>-Package, e.g. c:\temp\GRASS-64-Release-Package.

Install NSIS (2.45)

1. Download the  NSIS installer

2. Install to c:\DevTools

Install NSIS: Untgz Plugin (1.0.16)

1. Download the  NSIS Untgz Plugin

2. Unzip to c:\DevTools\Plugins\

Create the WinGRASS Installer

1. Edit file c:\temp\GRASS-Installer.nsi to reflect path to the GRASS source tree. Default settings is:

Grass64:
!define DEMOLOCATION_PATH "c:\osgeo4w\usr\src\grass64_release\demolocation"
!define MSYS_BATCH "C:\OSGeo4W\usr\src\grass64_release\mswindows\osgeo4w\msys.bat"

Grass65:
!define DEMOLOCATION_PATH "c:\osgeo4w\usr\src\grass6_devel\demolocation"
!define MSYS_BATCH "C:\OSGeo4W\usr\src\grass6_devel\mswindows\osgeo4w\msys.bat"

Grass70:
!define DEMOLOCATION_PATH "c:\osgeo4w\usr\src\grass_trunk\demolocation"
!define MSYS_BATCH "C:\OSGeo4W\usr\src\grass_trunk\mswindows\osgeo4w\msys.bat"

2. Define INSTALER_TYPE

  • GRASS 6.4: valid options - Release, Devel (default: Release)
  • GRASS 6.5: valid options - Release, Devel (default: Devel)
  • GRASS 7.0: valid options - Release, Devel (default: Devel)

3. Update SVN revision number (see svn info), e.g. change

!define DEV65_SVN_REVISION "36599"

to

!define DEV65_SVN_REVISION "40505"

4. Right click on the file c:\temp\GRASS-Installer.nsi and select Compile NSIS Script.

5. When finished, you should have the WinGRASS release installer in c:\temp.

TODO

  • QGIS
  • Add cairo support to grass-7.0.svn
    • Possibly use these cairo binaries  deps and  bin. (check for newer versions)
    • Preferably get cairo added to osgeo4w tree.
  • Add geos support for grass-7.0.svn (need geos-config file)

Hints

Changing the user interface locale

  • MSys users should be setting the LANG, LC_MESSAGES etc. variables in ~/.bash_profile (etc) if they want it set to a specific locale other than the default locale.

See also

Errata

  • Some anti-virus software seem to think that the r.out.png.exe module (etc.) is a sneaky attempt to fool you into thinking it's an image instead of what it really is: a program which exports a PNG file. g.version is also reported to set them off. You'll have to bypass these over-zealous warnings as appropriate.
  • Large File support ("LFS", >2GiB) is currently not supported for 32bit versions of Windows. A 64bit build of GRASS (or more accurately a build of the support libraries needed to build 64bit GRASS) is still in development.
  • The wxGUI vector digitizer and 3D visualization tools do not currently compile on Windows due to missing library indexes in the wxPython dependency.

Open Tickets

#86
d.rast.edit.tcl: doesn't start from wxPython without aspect map
#226
WinGRASS fails to create .gislock opening a mapset
#469
raster data needs binary mode on windows
#508
hardcoded /dev/null
#560
WinGRASS not deleting temp ppm files from map display
#573
stanalone installer: include the release notes
#580
WinGRASS: $GISBASE/etc/gui/scripts/ require something like $(EXE) to run
#585
init.bat should give usage info with --help
#606
WinGRASS GIS.m: broken newlines in output window
#653
consider using console instead of cmd.exe
#805
i.spectral in GRASS6.4
#820
r.in.wms doesn't work in WinGRASS installer distribution
#932
Wingrass7 - ImportError: No module named grass - Fix PYTHONPATH?
#966
wx attribute table manger fails on wingrass with >188 dbf tables
#973
Unable to scroll map selection dropdown lists with mouse scroller
#984
v.out.ogr to MySQL does not work propely
#995
WxGUI startup screen fails if GISDBASE path contains non-latin characters
#1005
db.out.ogr together with g.parser doesn't play nicely with non-lati characters containing DSN
#1027
WinGrass7 + pythonhome/pythonpath
#1042
winGRASS: r.statistics complains if path to grassdb has spaces
#1053
After abort command v.surf.rst from wxGUI vector output of devation (devi) couldn´t be removed, or overwrited
#1080
Windows native installer: reinstall
#1101
WinGrass7 + scripts are not found in the command line
#1103
WinGrass64 - windows-commandline not released
#1131
Global LFS for wingrass
#1166
r.tileset: projection string munching on wingrass
#1182
.inputrc improving msys WinGRASS command line
#1193
Python Menu: Japanese (double byte character) in menu may cause parser error.
#1213
wingrass 64bit branch
#1235
ERROR: G_getenv(): Variable LOCATION_NAME not set
#1260
Georectifier: RMS broken
#1275
zipped HGT Import fails on wingrass as "unzip" isn't in the package
#1282
WinGrass using www.python.org-installation
#1286
clean_temp can not be called before LOCATION_NAME is set
#1288
g.dirseps breaks non-latin file/folder names on Windows
#1290
Wingrass65 - v.krige not working
#1358
WinGRASS 6.4.1: SQLite driver errors: `Unable to open database'
#1428
WinGRASS + how to deliver Microsoft Visual C++ Redistributable Package (vcredist)?
#1447
wxGUI wingrass scripts need whitespace in path
#1514
wingrass - different wingrass-modes are differently translated
#1555
python-scripts in wingrass64svn
#1556
wingrass - g.message in a python-script - no output
#1579
wingrass: errors while a DB is open results in a zombie dbf.exe
#1586
v.in.wfs complains about xerces-c support in GDAL
#1664
Texts in command dialogs are garbled
#1695
WinGRASS does not launch
#1768
wingrass6.x: python addon scripts aren't working
#1782
wingrass7: installing addons by wxgui-extensions manager fails
#1837
d.rast.edit error when attempting to edit a raster
#1844
wingrass: db_open_select_cursor fails for DBF driver.
#1866
broken db driver communication in winGRASS 7
#1891
wingrass: background dosbox from regular wxgui startup
#1940
wingrass - nsis - script in release mode: !define SVN_REVISION "@GRASS_VERSION_SVN@" not set
#1941
wxGUI fails with Japanese locale
#1945
wingrass: Command Line can't find grass.python libs
#1952
wingrass: please add tac and seq to extrabin
#1953
wingrass: GRASS6\wx file has \r\r\n newline
#1956
Cartographic Composer: Raster map is not shown in preview
#1959
wingrass wx carto composer: Image causes traceback
#1962
wingrass installer: install_msruntime dir not deleted despite rule for it
#1964
m.proj on wingrass: protect g.proj's path name to the grid file
#1966
filesystem cruft from wingrass installer
#1983
wingrass: permission denied to open grass70.py

Closed Tickets

#13
GRASS OGR Module failing
#65
WinGRASS: Starting up gis.m & hangs (probably on g.region)
#111
r.los fails with high values for max_dis parameter
#118
r.patch fails on Vista
#127
WinGRASS Tcl/Tk GUI - Text formatting error in Output window
#142
WinGRASS Native: Ground Control Points Usability
#160
WinGRASS: v.report incompatability issue
#162
r.regressionline incompatability issue in WinGRASS
#234
v.type, v.type.sh, GUI and WinGRASS
#317
WinGRASS MSYS Console doesn't run correctly
#363
WinGRASS: Accsess Denied in .grassrc6
#389
Georectify tool adds two EN coord pairs to one point in POINTS file
#478
MSYS Console fails to start when installed in Windows at a path with spaces.
#499
fresh windows startup not very friendly
#531
win grass6.4.0RC3 - started with --help returns no help
#534
g.gui doesn't work in ms-windows
#541
wxDigit on windows fails (osgeo4w 6.4.svn)
#555
v.in.gpsbabel on wingrass: g.proj error
#559
wingrass stand-alone installer: MSys console doesn't work
#570
startup problem with standalone winGRASS install and custom python
#575
stanalone installer: permission denied on mdoule execution
#581
v.in.ogr from wxGUI in wingrass fails to getInterfaceDescription
#586
WinGRASS: 3D view wxNVIZ does not work
#588
wxGUI: About GRASS GIS window doesn't let you view full lic or devs
#593
WinGRASS GIS.m: cannot select maps from mapset GUI
#595
WinGRASS g.version -c fails
#617
r.sim.water crashes on WinGrass
#627
wingrass native: wxNVIZ exits with lib compat error
#628
wingrass native: vdigit error on new map
#629
WinGRASS: spaces in pathnames
#634
v.out.ogr error on Vista
#637
Problems with paths in the TCL/TK Windows GUI
#639
Wingrass native r.in.aster doesn't work
#655
g.manual fails to open a browser
#711
r.horizon crashes
#713
OSGeo4W patch for g3d lib
#715
OSGeo4W patch for DLLs
#736
r.proj fails in wingrass
#740
v.edit returns incorrect results on Windows
#744
package.sh for compiling on windows
#757
WinGRASS: GUI window from cmd line
#759
r.patch non-functional in WinGRASS 6.4 svn on Vista
#783
r.watershed fails on wingrass
#786
Update to http://svn.osgeo.org/grass/grass/branches/releasebranch_6_4/mswindows/README.html
#806
WinGRASS: Problem with special characters (wxpython GUI)
#809
v.db.addtable consistently fails in winGrass
#811
MYSYS shortcut starts an infinite number of windows
#813
Location wizard - false path to the epsg-file
#827
standalone-installer: execution failed on g.proj.exe -p
#843
v.digit broken on new WinGrass release
#856
r.proj fails in WinGRASS-6.4.0SVN-r40049-1
#867
WinGrass64-compiling: `libintl_printf' is an unrecognized format function type'
#875
WinGrass-Installer - definition of the destination folder
#877
wxGUI: Location wizard bug when creating LatLong location
#878
v.external not working on WinGrass
#881
winGRASS compilation: dumpbin: command not found
#882
i18n enabled winGRASS: properties dialog not opening
#884
WinGrass: reducing size of the installer
#885
WinGrass: displaying r.external-linked raster data not working
#889
Msys-based commands fail when winGRASS is installed in %ProgramFiles%
#890
shell scripts: %TMP% namespace collision
#894
wingrass uninstaller: left over files
#897
WinGrass: error with "Query vector map (edit mode)"
#898
WinGrass: r.out.xyz error
#904
WinGrass: include patched msys.bat in the WinGrass-Installer
#905
WinGrass: include patched msys.bat in the WinGrass-Installer
#908
No Font Definition File, windows xp
#913
(windows) r.external does not work in both osgeo4w and standalone packages
#917
v.digit map creation weirdness on wingrass
#922
GRASS installer can not install unser "program files" (Windows7 only)
#924
no Start Menu entry created in Windows 7
#930
Wingrass7 - compiling errors
#931
wingrass7 - wxgui not starting
#961
WinGRASS-6.4.0SVN-r40852-1 installs GRASS, but it doesn't run
#972
Provide visual feedback when loading available vector map list
#976
WxGUI histogram tool-bar icons messed up in WinGRASS
#979
WxGUI fails to display vector attribute table if default db connection is missing
#980
WinGRASS shouldn't use Internet Explorer as a default browser
#986
WinGrass-Installer - Enhancement
#996
Wingrass needs newer tcl version due to bug in file encodings
#1004
WxGUI CMD fails if command contains non-latin letters
#1006
r.terraflow fails to stat() stream file on Windows
#1007
WxGUI should provide visual feedback when adding new db column
#1008
WinGrass7 - disable LFS
#1015
WinGrass7: starting grass by grass70.py fails
#1017
WinGrass7 - wxgui error
#1018
v.in.ogr.. Bad file descriptor: Files
#1019
winGRASS: 'layer manager' window hidden by 'mapdisplay' windows
#1020
Display of vector maps fails
#1022
v.out.ogr fails on wi7
#1038
v.surf.rst fails in Windows 7 with "Access is denied"
#1041
winGRASS Tcl/Tk: Cannot save image files (PNG/JPG/BMP/etc)
#1044
Crash on startup directly after install (wrong copy of python dll picked up)
#1052
Build of 7.0.SVN dont work
#1079
wxpython GUI error in d.vect
#1083
Wingrass7 - versioned libgrass needed for start, unversioned libgrass needed for wxnviz
#1090
Access is denied - r.statistics
#1091
WinGrass7 + v.krige: rpy2 not installed + nightly Wingrass-build
#1092
WinGrass + R's installation path in %PATH%
#1099
GRASS 6.4SVN with MSYS fails to start startup screen
#1106
r.terraflow limited to 32bit temp files in WinGrass
#1108
packaging osgeo4w-gdal18 in WinGrass-installer
#1110
v.rast.stats locks up on wingrass
#1116
g.proj & g.region fail after cygwin install
#1117
WinGrass7 - wxgui not starting
#1118
WinGrass7 - NVIZ not working
#1122
Command line hangs where dialog boxes work
#1125
wingrass - ctypes - compiling error
#1134
WinGrass - 3D view mode crashes
#1139
v.report has a problem (only via OSGEO4W package)
#1140
Formula in Raster Map Calc is not working with 'IF' condition, and NOT to have space. Only from GUI after commna.
#1141
GLWindow.OnPaint() broken on Windows
#1143
WinGrass64RC7 - db.execute
#1149
WinGrass - load R-installation-path dynamically into PATH
#1157
WinGrass-Installer should include a working gdal-version which is built against
#1158
Removing vector map in Windows fails with "Unable to delete vector map"
#1160
WinGrass: compiling against osgeo4w's gdal17 fails
#1163
wx wms import tool error
#1164
newlines in sed scripts not portable for wingrass
#1165
wingrass: cs2cs fails from the msys command line
#1169
wget misses libssl32.dll (affects r.in.wms)
#1171
wingrass: include a gpsbabel with XML support
#1178
WinGrass: g.extension - problem with path to $GISBASE
#1179
daily wingrass binary snapshots are down
#1181
r.le.setup fails on WinGRASS due to missing xterm
#1184
"d.vect display=attr" imply grass open process but doesn't close them.
#1185
v.in.ogr on WinGrass: "Bad file descriptor"
#1186
WinGrass7 - v.krige not working
#1189
wingrass: 'g.region -l' fails when using a NTv2 grid file
#1190
Error on compiling GRASS in Windows using osgeo4w
#1197
d.grid fails with -g flag in winGRASS
#1198
Error while parsing file paths in WinGRASS with Scripts
#1201
wingrass, gdal, proj4
#1207
installation incomplete/messed
#1210
g.remove fails to remove vector files under GRASS/OSgeo4w
#1215
db.tables in Windows layer manager does not populate driver field for pg
#1217
d.vect -a flag locks up the wxGUI on windows
#1220
Error when creating vector(areas) from raster
#1253
wingrass7 - i.aster.toar - compiling error
#1267
Error on zoom to selected [vector] map
#1270
wingrass: Error in Attribute Table Manager
#1271
osgeo4w patch update
#1276
r.null after v.to.rast in winGRASS does not work properly
#1280
problem about the output of g.parser
#1287
Windows native installers TCL lacks .enc files for non-latin 1 encodings
#1289
wingrass65 - Vector digitizer not available: Reason: xdr not found
#1292
Profile tool incorrectly processes no data values
#1297
db.out.ogr fails to start in 6.5
#1298
v.digit crashes dbf.exe on Windows when creating attribute table
#1299
Provide user-friendly error message when trying to edit vectors in Windows
#1301
wingrass: db.in.ogr fails to load .csv file
#1303
v.in.ogr leaves TMP file after import
#1307
wingrass: new wxgui dialog for v.in.ogr in windows7 does not show *.shp files
#1308
wingrass - dbf.exe-crash
#1310
Browse button in WxPython GUIs (for scripts) does not provide a correct file path for WinGRASS
#1331
winGrass: hangs when displaying vector attribute labels
#1332
wingrass: during install generating font configuration file fails
#1354
Missing MSVCR71.dll / MSVCP.dll prevent winGRASS from starting
#1380
WxGUI, menu does not work at all (languages using double-byte characters)
#1387
wingrass65 - wxgui compiling error and not starting
#1394
Missing MSVCR71.dll on startup
#1415
closecell: can't move + quant file error in winGRASS Msys shell
#1417
Error during Grass start
#1419
wingrass - change commandline to "windows home"
#1450
grass 6.4.svn nightly build fails on startup
#1460
wingrass7 not compiling
#1477
error running v.what.vect under Windows/Osgeo4w
#1484
GRASS6.4.2SVN WX-Python GUI, menu does not work at all
#1485
Cannot save workspace from wxGUI
#1504
NVIZ shows only English Menu
#1535
winGRASS g.extension.py problems
#1543
WXGUI GDAL/OGR import dialogs fail to open in WinGRASS
#1544
(Windows/osgeo4w) libtiff.dll is broken
#1546
references to g.echo in devbr6
#1547
wxGUI Cartographic Composer: division by zero
#1548
v.generalize: strange behaviour on win
#1549
r.to.vect lines not working well?
#1552
WinGRASS: spaces in pathnames for r.in.aster
#1553
osgeo4w and qgis builds: path settings to msys on wingrass find wrong 'sort'
#1554
wxGUI Cartographic Composer: preview broken on Windows
#1622
winGrass 7 error
#1629
v.in.db - odbc-driver - access-database: not working
#1634
wingrass7: i.spectral -error
#1639
wingrass: launching wxNviz fails
#1692
calling a script within a script failing on Windows XP
#1698
Exiting GUI leaves minimized CMD window open
#1700
wingrass6.4.3svn: changing vector point symbol doesn't work
#1701
wingrass: python crashes by quit GUI after using 3D view in map display
#1706
wingrass: open attribute table fails
#1737
Windows users cannot access manage table controls in attribute manager
#1738
Cannot view vector table in wxGUI
#1746
Map Display Output Save Issue
#1803
GRASS 6.4.3RC1 on Win 7: grass64.bat fails due to UNIX line endings in Init.bat
#1869
wingrass7: r.in.wms - ERROR: Unable to load GDAL python bindings
#1890
wingrass: launch grass terminal fails
#1895
wingrass installer problems: missing DLLs
#1904
wingrass6.4.3svn: vector digitizing - a sort of incomplete
#1911
v.hull bit broken output on wingrass
#1944
wingrass: python missing from extrabin
#1946
wingrass: demolocation includes .svn/ cruft
#1947
wingrass: %APPDATA%/GRASS6/grassrc6 and rc files
#1950
wingrass: replace rxvt with conhost.exe
#1960
wingrass wx carto composer: adding north arrow causes Error and traceback
#2002
The ordinal 32 could not be located in the dynamic link library proj.dll
#2011
WxGUI, menu does not work at all (languages using double-byte characters)