Hi Martin,
can you please tell me what is the difference between VECT_INC and VECTORDEPS? The former contains PQINCPATH, the later PQLIBPATH and PQLIB.
Thanks,
Vaclav
inlcude/Make/Grass.make:
VECT_INC = $(PQINCPATH)
VECTORDEPS = $(DBMILIB) $(GRAPHLIB) $(DIG2LIB) $(LINKMLIB) $(RTREELIB) $(GISLIB) $(GEOSLIBS) $(GDALLIBS) $(MATHLIB) $(BTREE2LIB) $(GPROJLIB) $(RASTERLIB) $(PQLIBPATH) $(PQLIB)
···
On Sat, Jun 28, 2014 at 12:22 PM, <svn_grass@osgeo.org> wrote:
Author: martinl
Date: 2014-06-28 09:22:57 -0700 (Sat, 28 Jun 2014)
New Revision: 61030
Modified:
grass/trunk/general/g.mlist/Makefile
Log:
g.mlist: fix compilation (missing EXTRA_INC)
Modified: grass/trunk/general/g.mlist/Makefile
— grass/trunk/general/g.mlist/Makefile 2014-06-28 15:25:43 UTC (rev 61029)
+++ grass/trunk/general/g.mlist/Makefile 2014-06-28 16:22:57 UTC (rev 61030)
@@ -4,6 +4,7 @@
LIBES = $(MANAGELIB) $(GISLIB) $(RASTERLIB) $(RASTER3DLIB) $(VECTORLIB)
DEPENDENCIES = $(MANAGEDEP) $(GISDEP) $(RASTERDEP) $(RASTER3DDEP) $(VECTORDEP)
+EXTRA_INC = $(VECT_INC)
include $(MODULE_TOPDIR)/include/Make/Module.make
grass-commit mailing list
grass-commit@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-commit
I’m not sure why I didn’t have a compilation problem on my machine. Different installations have different dependencies?
···
On Sat, Jun 28, 2014 at 3:43 PM, Vaclav Petras <wenzeslaus@gmail.com> wrote:
Hi Martin,
can you please tell me what is the difference between VECT_INC and VECTORDEPS? The former contains PQINCPATH, the later PQLIBPATH and PQLIB.
Thanks,
Vaclav
inlcude/Make/Grass.make:
VECT_INC = $(PQINCPATH)
VECTORDEPS = $(DBMILIB) $(GRAPHLIB) $(DIG2LIB) $(LINKMLIB) $(RTREELIB) $(GISLIB) $(GEOSLIBS) $(GDALLIBS) $(MATHLIB) $(BTREE2LIB) $(GPROJLIB) $(RASTERLIB) $(PQLIBPATH) $(PQLIB)
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
On Sat, Jun 28, 2014 at 12:22 PM, <svn_grass@osgeo.org> wrote:
Author: martinl
Date: 2014-06-28 09:22:57 -0700 (Sat, 28 Jun 2014)
New Revision: 61030
Modified:
grass/trunk/general/g.mlist/Makefile
Log:
g.mlist: fix compilation (missing EXTRA_INC)
Modified: grass/trunk/general/g.mlist/Makefile
— grass/trunk/general/g.mlist/Makefile 2014-06-28 15:25:43 UTC (rev 61029)
+++ grass/trunk/general/g.mlist/Makefile 2014-06-28 16:22:57 UTC (rev 61030)
@@ -4,6 +4,7 @@
LIBES = $(MANAGELIB) $(GISLIB) $(RASTERLIB) $(RASTER3DLIB) $(VECTORLIB)
DEPENDENCIES = $(MANAGEDEP) $(GISDEP) $(RASTERDEP) $(RASTER3DDEP) $(VECTORDEP)
+EXTRA_INC = $(VECT_INC)
include $(MODULE_TOPDIR)/include/Make/Module.make
grass-commit mailing list
grass-commit@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-commit
Hm, it still doesn’t compile. Anyone else has the same problem?
···
On Sat, Jun 28, 2014 at 5:21 PM, Huidae Cho <grass4u@gmail.com> wrote:
I’m not sure why I didn’t have a compilation problem on my machine. Different installations have different dependencies?
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
On Sat, Jun 28, 2014 at 3:43 PM, Vaclav Petras <wenzeslaus@gmail.com> wrote:
Hi Martin,
can you please tell me what is the difference between VECT_INC and VECTORDEPS? The former contains PQINCPATH, the later PQLIBPATH and PQLIB.
Thanks,
Vaclav
inlcude/Make/Grass.make:
VECT_INC = $(PQINCPATH)
VECTORDEPS = $(DBMILIB) $(GRAPHLIB) $(DIG2LIB) $(LINKMLIB) $(RTREELIB) $(GISLIB) $(GEOSLIBS) $(GDALLIBS) $(MATHLIB) $(BTREE2LIB) $(GPROJLIB) $(RASTERLIB) $(PQLIBPATH) $(PQLIB)
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
On Sat, Jun 28, 2014 at 12:22 PM, <svn_grass@osgeo.org> wrote:
Author: martinl
Date: 2014-06-28 09:22:57 -0700 (Sat, 28 Jun 2014)
New Revision: 61030
Modified:
grass/trunk/general/g.mlist/Makefile
Log:
g.mlist: fix compilation (missing EXTRA_INC)
Modified: grass/trunk/general/g.mlist/Makefile
— grass/trunk/general/g.mlist/Makefile 2014-06-28 15:25:43 UTC (rev 61029)
+++ grass/trunk/general/g.mlist/Makefile 2014-06-28 16:22:57 UTC (rev 61030)
@@ -4,6 +4,7 @@
LIBES = $(MANAGELIB) $(GISLIB) $(RASTERLIB) $(RASTER3DLIB) $(VECTORLIB)
DEPENDENCIES = $(MANAGEDEP) $(GISDEP) $(RASTERDEP) $(RASTER3DDEP) $(VECTORDEP)
+EXTRA_INC = $(VECT_INC)
include $(MODULE_TOPDIR)/include/Make/Module.make
grass-commit mailing list
grass-commit@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-commit
Hi,
just built
r61035
It works for me, no more missed ogr headers.
Thanks.
Massimo.
···
On Sat, Jun 28, 2014 at 5:41 PM, Anna Petrášová <kratochanna@gmail.com> wrote:
Hm, it still doesn’t compile. Anyone else has the same problem?
On Sat, Jun 28, 2014 at 5:21 PM, Huidae Cho <grass4u@gmail.com> wrote:
I’m not sure why I didn’t have a compilation problem on my machine. Different installations have different dependencies?
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
On Sat, Jun 28, 2014 at 3:43 PM, Vaclav Petras <wenzeslaus@gmail.com> wrote:
Hi Martin,
can you please tell me what is the difference between VECT_INC and VECTORDEPS? The former contains PQINCPATH, the later PQLIBPATH and PQLIB.
Thanks,
Vaclav
inlcude/Make/Grass.make:
VECT_INC = $(PQINCPATH)
VECTORDEPS = $(DBMILIB) $(GRAPHLIB) $(DIG2LIB) $(LINKMLIB) $(RTREELIB) $(GISLIB) $(GEOSLIBS) $(GDALLIBS) $(MATHLIB) $(BTREE2LIB) $(GPROJLIB) $(RASTERLIB) $(PQLIBPATH) $(PQLIB)
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
On Sat, Jun 28, 2014 at 12:22 PM, <svn_grass@osgeo.org> wrote:
Author: martinl
Date: 2014-06-28 09:22:57 -0700 (Sat, 28 Jun 2014)
New Revision: 61030
Modified:
grass/trunk/general/g.mlist/Makefile
Log:
g.mlist: fix compilation (missing EXTRA_INC)
Modified: grass/trunk/general/g.mlist/Makefile
— grass/trunk/general/g.mlist/Makefile 2014-06-28 15:25:43 UTC (rev 61029)
+++ grass/trunk/general/g.mlist/Makefile 2014-06-28 16:22:57 UTC (rev 61030)
@@ -4,6 +4,7 @@
LIBES = $(MANAGELIB) $(GISLIB) $(RASTERLIB) $(RASTER3DLIB) $(VECTORLIB)
DEPENDENCIES = $(MANAGEDEP) $(GISDEP) $(RASTERDEP) $(RASTER3DDEP) $(VECTORDEP)
+EXTRA_INC = $(VECT_INC)
include $(MODULE_TOPDIR)/include/Make/Module.make
grass-commit mailing list
grass-commit@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-commit
Yeah! My gdal is in a standard library, which is why I didn’t catch this issue earlier. Thanks for testing.
···
On Sat, Jun 28, 2014 at 6:00 PM, epi <massimodisasha@gmail.com> wrote:
Hi,
just built
r61035
It works for me, no more missed ogr headers.
Thanks.
Massimo.
On Jun 28, 2014, at 5:55 PM, Huidae Cho <grass4u@gmail.com> wrote:
Can you try r61035?
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
On Sat, Jun 28, 2014 at 5:41 PM, Anna Petrášová <kratochanna@gmail.com> wrote:
Hm, it still doesn’t compile. Anyone else has the same problem?
On Sat, Jun 28, 2014 at 5:21 PM, Huidae Cho <grass4u@gmail.com> wrote:
I’m not sure why I didn’t have a compilation problem on my machine. Different installations have different dependencies?
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
On Sat, Jun 28, 2014 at 3:43 PM, Vaclav Petras <wenzeslaus@gmail.com> wrote:
Hi Martin,
can you please tell me what is the difference between VECT_INC and VECTORDEPS? The former contains PQINCPATH, the later PQLIBPATH and PQLIB.
Thanks,
Vaclav
inlcude/Make/Grass.make:
VECT_INC = $(PQINCPATH)
VECTORDEPS = $(DBMILIB) $(GRAPHLIB) $(DIG2LIB) $(LINKMLIB) $(RTREELIB) $(GISLIB) $(GEOSLIBS) $(GDALLIBS) $(MATHLIB) $(BTREE2LIB) $(GPROJLIB) $(RASTERLIB) $(PQLIBPATH) $(PQLIB)
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
On Sat, Jun 28, 2014 at 12:22 PM, <svn_grass@osgeo.org> wrote:
Author: martinl
Date: 2014-06-28 09:22:57 -0700 (Sat, 28 Jun 2014)
New Revision: 61030
Modified:
grass/trunk/general/g.mlist/Makefile
Log:
g.mlist: fix compilation (missing EXTRA_INC)
Modified: grass/trunk/general/g.mlist/Makefile
— grass/trunk/general/g.mlist/Makefile 2014-06-28 15:25:43 UTC (rev 61029)
+++ grass/trunk/general/g.mlist/Makefile 2014-06-28 16:22:57 UTC (rev 61030)
@@ -4,6 +4,7 @@
LIBES = $(MANAGELIB) $(GISLIB) $(RASTERLIB) $(RASTER3DLIB) $(VECTORLIB)
DEPENDENCIES = $(MANAGEDEP) $(GISDEP) $(RASTERDEP) $(RASTER3DDEP) $(VECTORDEP)
+EXTRA_INC = $(VECT_INC)
include $(MODULE_TOPDIR)/include/Make/Module.make
grass-commit mailing list
grass-commit@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-commit
On Sat, Jun 28, 2014 at 6:02 PM, Huidae Cho <grass4u@gmail.com> wrote:
Yeah! My gdal is in a standard library, which is why I didn't catch this
issue earlier. Thanks for testing.
Thanks, works for me too.
Anna
On Sat, Jun 28, 2014 at 6:00 PM, epi <massimodisasha@gmail.com> wrote:
Hi,
just built
r61035
It works for me, no more missed ogr headers.
Thanks.
Massimo.
On Jun 28, 2014, at 5:55 PM, Huidae Cho <grass4u@gmail.com> wrote:
Can you try r61035?
On Sat, Jun 28, 2014 at 5:41 PM, Anna Petrášová <kratochanna@gmail.com>
wrote:
Hm, it still doesn't compile. Anyone else has the same problem?
On Sat, Jun 28, 2014 at 5:21 PM, Huidae Cho <grass4u@gmail.com> wrote:
I'm not sure why I didn't have a compilation problem on my machine.
Different installations have different dependencies?
On Sat, Jun 28, 2014 at 3:43 PM, Vaclav Petras <wenzeslaus@gmail.com>
wrote:
Hi Martin,
can you please tell me what is the difference between VECT_INC and
VECTORDEPS? The former contains PQINCPATH, the later PQLIBPATH and PQLIB.
Thanks,
Vaclav
inlcude/Make/Grass.make:
VECT_INC = $(PQINCPATH)
VECTORDEPS = $(DBMILIB) $(GRAPHLIB) $(DIG2LIB) $(LINKMLIB)
$(RTREELIB) $(GISLIB) $(GEOSLIBS) $(GDALLIBS) $(MATHLIB) $(BTREE2LIB)
$(GPROJLIB) $(RASTERLIB) $(PQLIBPATH) $(PQLIB)
On Sat, Jun 28, 2014 at 12:22 PM, <svn_grass@osgeo.org> wrote:
Author: martinl
Date: 2014-06-28 09:22:57 -0700 (Sat, 28 Jun 2014)
New Revision: 61030
Modified:
grass/trunk/general/g.mlist/Makefile
Log:
g.mlist: fix compilation (missing EXTRA_INC)
Modified: grass/trunk/general/g.mlist/Makefile
--- grass/trunk/general/g.mlist/Makefile 2014-06-28 15:25:43
UTC (rev 61029)
+++ grass/trunk/general/g.mlist/Makefile 2014-06-28 16:22:57
UTC (rev 61030)
@@ -4,6 +4,7 @@
LIBES = $(MANAGELIB) $(GISLIB) $(RASTERLIB) $(RASTER3DLIB)
$(VECTORLIB)
DEPENDENCIES = $(MANAGEDEP) $(GISDEP) $(RASTERDEP) $(RASTER3DDEP)
$(VECTORDEP)
+EXTRA_INC = $(VECT_INC)
include $(MODULE_TOPDIR)/include/Make/Module.make
_______________________________________________
grass-commit mailing list
grass-commit@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-commit
_______________________________________________
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
_______________________________________________
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
_______________________________________________
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
Hi,
2014-06-28 21:43 GMT+02:00 Vaclav Petras <wenzeslaus@gmail.com>:
can you please tell me what is the difference between VECT_INC and
VECTORDEPS? The former contains PQINCPATH, the later PQLIBPATH and PQLIB.
PQINCPATH includes path to headers
PQLIBPATH and PQLIB includes info about libes (path and -l flag)
see include/Make/Platform.make. The compilation was related to the
missing headers, so I quick fixed that by including VECT_INC.
Martin
--
Martin Landa * http://geo.fsv.cvut.cz/gwiki/Landa