[postgis-devel] [PostGIS] #636: Compile error (lwin_wkt.c)

PostGIS trac at osgeo.org
Sat Oct 23 17:36:09 PDT 2010


#636: Compile error (lwin_wkt.c)
---------------------------+------------------------------------------------
  Reporter:  jorgearevalo  |       Owner:  pramsey      
      Type:  defect        |      Status:  reopened     
  Priority:  blocker       |   Milestone:  PostGIS 2.0.0
 Component:  postgis       |     Version:  trunk        
Resolution:                |    Keywords:               
---------------------------+------------------------------------------------

Comment(by mcayland):

 IIRC from reworking the Makefiles for PGXS, the key to making older
 versions of flex read the filename from the command line correctly is to
 wrap the filename in apostrophes.

 So I would try changing liblwgeom/Makefile.in from:

 lwin_wkt_parse.c: lwin_wkt_parse.y
     $(YACC) -o$@ -d $^

 to:

 lwin_wkt_parse.c: lwin_wkt_parse.y
     $(YACC) -o'$@' -d $^

 as per the existing parser Makefile rule.

-- 
Ticket URL: <http://trac.osgeo.org/postgis/ticket/636#comment:17>
PostGIS <http://trac.osgeo.org/postgis/>
The PostGIS Trac is used for bug, enhancement & task tracking, a user and developer wiki, and a view into the subversion code repository of PostGIS project.


More information about the postgis-devel mailing list