#2784 closed patch (fixed)
configure --with-scfgal=/usr/local/bin won't fail
Reported by: | vmo | Owned by: | robe |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 2.1.4 |
Component: | sfcgal | Version: | 2.1.x |
Keywords: | Cc: |
Description
If you specify something else that the sfcgal-config script as the —with-sfcgal option value, the configure script won't fail but the build will (undefined symbols)
Attachments (2)
Change History (11)
by , 10 years ago
Attachment: | 2784.patch added |
---|
comment:1 by , 10 years ago
Component: | postgis → sfcgal |
---|---|
Owner: | changed from | to
comment:2 by , 10 years ago
Owner: | changed from | to
---|---|
Type: | defect → patch |
comment:3 by , 10 years ago
follow-up: 6 comment:4 by , 10 years ago
Oh but the patch is good for me, even better than trusting "test" NOTE: the same test is used with gdal-config and geos-config, dunno if they have also the same problem (possibly)
comment:5 by , 10 years ago
Milestone: | → PostGIS 2.1.4 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
comment:6 by , 10 years ago
NOTE: the same test is used with gdal-config and geos-config, dunno if they have also the same problem (possibly)
No they don't (tested).
by , 10 years ago
Attachment: | 2784_2.patch added |
---|
comment:9 by , 10 years ago
I didn't attach a patch because one was already submitted and the ticket is closed. Anyway, here it is.
Note:
See TracTickets
for help on using tickets.
I saw the problem is use of "test -x" which tests if a file is "executable". Directories are "executable" if they can be browsed, so the test should be changed to test for the file to be "a file" _and_ be "executable".