Opened 8 years ago
Closed 8 years ago
#3602 closed defect (fixed)
perl as found by configure is not used in tiger extension, postgis_sfcgal, address_standardizer
Reported by: | gdt | Owned by: | strk |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 2.2.3 |
Component: | build | Version: | master |
Keywords: | Cc: |
Description
In extensions/postgis_tiger_geocoder/Makefile.in, the pgxs makefile is included at the end. This overrides the setting of PERL to @PERL@, which is what configure found.
(In my case, postgresql is configured without perl (because it doesn't need it), and perl or other extensions are built separately.)
Fix:
Add
PERL=@PERL@
at the end, like topology. Alternatively, move the 2 pgxs lines to the beginning for all files.
By inspection, postgis_sfcgal and address_standardizer have the same issue.
Change History (4)
comment:1 by , 8 years ago
Milestone: | PostGIS 2.3.0 → PostGIS 2.2.3 |
---|
comment:2 by , 8 years ago
Summary: | perl as found by configure is not used in tiger extension → perl as found by configure is not used in tiger extension, postgis_sfcgal, address_standardizer |
---|
comment:3 by , 8 years ago
Note:
See TracTickets
for help on using tickets.
In 15026: