[postgis-users] CVS: HEAD and 1.0 branch

Jean David TECHER davidtecher at yahoo.fr
Fri Apr 22 05:56:21 PDT 2005


---------------------------------------------------------------
TECHER Jean David
01MAP
e-mail: david at 01map.net
Tél: 04 67 45 60 27
Entreprise: http://www.01map.net
Perso: http://techer.pascal.free.fr/postgis/
---------------------------------------------------------------
----- Original Message -----
From: "Jean David TECHER" <davidtecher at yahoo.fr>
To: "PostGIS Users Discussion" <postgis-users at postgis.refractions.net>
Sent: Friday, April 22, 2005 11:55 AM
Subject: Re: [postgis-users] CVS: HEAD and 1.0 branch


> Hi Sandro
>
> Me and my frind Gerald spent lot of times to try resolving the problem ...
>
> Fisrt of all , I spent all my last night to try compiling PostGIS
CVS...Hard
> very hard :-[ Oh  my god:-(
>
> It's a good idea to compil postgis wiithout PG source but hard to
maintain,
> I think
>
> It seems that LDFLAGS, CFLAGS doesn't work ...
>
> Building has been done by these commands
>
> cvs -d ..... co postgis
> cd postgis
> autoconf
>
configure --with-geos=/c/PostgreSQL/8.0.2/bin/geos-config --enable-autoconf
>
> I have the following in my PATH
>
>
C:\PostgreSQL\8.0.2\bin;C:\PostgreSQL\8.0.2\lib;C:\PostgreSQL\8.0.2\lib\post
> gresql so that's the reason why configure found proj and postgresql
>
> My postgis.log is at the end of this mail
>
> I tried on PG 8.0.2
>
> First error, I got postgis can't find
>
> pwd.h, inet.h, neti,net.h in
> /c/PostgreSQL/8.0.2/inlcude/postgresql/server/port/win32 (pa
>
> So I did a comparaison with PostGIS 1.0.0
>
> EXCUSE ME IF THE CHANGES I DID ARE NOT NICE AND GOOD BUT IT IS THE ONLY
> SOLUTION
> I FOUND SINCE CFLAGS AND CPPFLAGS DON'T WORK (maybe a configure problem
...I
> ddon't know)
>
> So I added manually in lwgeom/Makefile
>
> line 34:
> override CFLAGS=
>
+= -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -O
> 2 -fexceptions
>
> line 63:
> override CFLAGS +=  $(PGBEINCLUDES)
>  $(PGBEINCLUDES)/port/win32 -DAUTOCACHE_BBOX=$(AUTOCACHE_BBOX)
>
> lines 90,91,92:
>
> $(SHLIB): $(OBJS)
>  dlltool --export-all  --output-def lwgeom.def $(OBJS)
>  dllwrap  -o liblwgeom.dll --dllname liblwgeom.dll  --def lwgeom.def
$(OBJS)
> $(SHLIB_LINK) -L/c/PostgreSQL/8.0.2/lib -lpostgres
>
>
> I needed to do few changes to but using staticaly library libpq.a (SORRY)
>
> lines 37,38;
>
> pgsql2shp$(EXE): $(OBJS) pgsql2shp.o PQunescapeBytea.o
>  $(CC) $(CFLAGS) $(PGBEINCLUDES) $(PGBEINCLUDES)/port/win32 $(OBJS)
> PQunescapeBytea.o pgsql2shp.o /c/PostgreSQL/8.0.2/lib/libpq.a
$(LDFLAGS) -o
> $@
>
>
> ============================= lwgeom/Makefile
> ==================================================================
> # Configuration Directives
> include ../Makefile.config
> include ../Version.config
>
> #---------------------------------------------------------------
> # Default missing CXX variable to c++
> #
> ifeq ($(CXX),)
>  CXX = c++
> endif
>
> #---------------------------------------------------------------
> # Shared library parameters.
> #
> NAME=lwgeom
> SHLIB           =
> lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
> SHLIB_MAJOR     = lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION)
> SHLIB_BARE      = lib$(NAME)$(DLSUFFIX)
> SHLIB_LINK  =
>
> MODULE_FILENAME = $(LPATH)/$(SHLIB)
>
> #---------------------------------------------------------------
> # Postgis version and build date
> #---------------------------------------------------------------
>
> POSTGIS_VERSION = $(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
> USE_GEOS=$(USE_GEOS) USE_PROJ=$(USE_PROJ) USE_STATS=$(USE_STATS)
> POSTGIS_LIB_VERSION =
> $(SO_MAJOR_VERSION).$(SO_MINOR_VERSION).$(SO_MICRO_VERSION)
> POSTGIS_BUILD_DATE := $(shell date -u "+%Y-%m-%d %H:%M:%S")
>
>
> #---------------------------------------------------------------
>
> override CFLAGS
>
+= -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -O
> 2 -fexceptions
> override CFLAGS += -fPIC
> #override CFLAGS += -I$(srcdir) -DFRONTEND -DSYSCONFDIR='"$(sysconfdir)"'
> override CFLAGS += -DUSE_VERSION=$(USE_VERSION)
> override CFLAGS += -DPOSTGIS_LIB_VERSION='"$(POSTGIS_LIB_VERSION)"'
> override CFLAGS += -DPOSTGIS_SCRIPTS_VERSION='"$(SCRIPTS_VERSION)"'
> override CFLAGS += -DPOSTGIS_BUILD_DATE='"$(POSTGIS_BUILD_DATE)"'
>
> JTS_OBJ=lwgeom_nojts.o
> ifeq ($(USE_GEOS),1)
>  override CFLAGS += -I$(GEOS_DIR)/include -DUSE_GEOS
>  GEOS_RULES=detect_geos_version
>  GEOS_WRAPPER=lwgeom_geos_wrapper.o
>  JTS_OBJ=lwgeom_geos.o
>  SHLIB_LINK += -lstdc++ -L$(GEOS_DIR)/lib -lgeos
> endif
>
> ifeq ($(USE_JTS),1)
>  override CFLAGS += -I$(JTS_INCLUDES) -DUSE_JTS
>  JTS_WRAPPER=lwgeom_jts_wrapper.o
>  JTS_OBJ=lwgeom_jts.o
>  SHLIB_LINK += -lgcj -ljts -lstdc++ -L$(JTS_LIBDIR)
> endif
>
> ifeq ($(USE_PROJ),1)
>  override CFLAGS += -I$(PROJ_DIR)/include -DUSE_PROJ
>  SHLIB_LINK += -L$(PROJ_DIR)/lib -lproj
> endif
>
> override CFLAGS += $(PGBEINCLUDES)
> $(PGBEINCLUDES)/port/win32 -DAUTOCACHE_BBOX=$(AUTOCACHE_BBOX)
>
> override CXXFLAGS := $(CFLAGS)
> # memory debug for gcc 2.91, 2.95, 3.0 and 3.1
> # for gcc >= 3.2.2 set GLIBCPP_FORCE_NEW at runtime instead
> #override CXXFLAGS += -D__USE_MALLOC
>
> #---------------------------------------------------------------
> # Add index selectivity to C flags
> #
> ifeq ($(USE_STATS),1)
>  override CFLAGS += -DUSE_STATS
> endif
>
> SA_OBJS=measures.o box2d.o ptarray.o lwgeom_api.o lwgeom.o lwpoint.o
> lwline.o lwpoly.o lwmpoint.o lwmline.o lwmpoly.o lwcollection.o
> $(GEOS_WRAPPER) $(JTS_WRAPPER) wktunparse.o lwgparse.o wktparse.tab.o
> lex.yy.o vsprintf.o
>
> OBJS=$(SA_OBJS) liblwgeom.o lwgeom_pg.o lwgeom_debug.o lwgeom_spheroid.o
> lwgeom_ogc.o lwgeom_functions_analytic.o $(JTS_OBJ) lwgeom_inout.o
> lwgeom_estimate.o lwgeom_functions_basic.o lwgeom_gist.o lwgeom_btree.o
> lwgeom_transform.o stringBuffer.o lwgeom_box.o lwgeom_box3d.o
> lwgeom_box2dfloat4.o lwgeom_chip.o lwgeom_svg.o lwgeom_gml.o
> lwgeom_triggers.o lwgeom_dump.o
>
> #OTHERS=y.output lex.yy.c wktparse.tab.c wktparse.tab.h lwpostgis.sql
> OTHERS=y.output lwpostgis.sql ../lwpostgis.sql postgis_geos_version.h
>
>
> #---------------------------------------------------------------
> # Makefile targets
>
> all: $(GEOS_RULES) $(SHLIB) ../lwpostgis.sql
>
> $(SHLIB): $(OBJS)
>  dlltool --export-all  --output-def lwgeom.def $(OBJS)
>  dllwrap  -o liblwgeom.dll --dllname liblwgeom.dll  --def lwgeom.def
$(OBJS)
> $(SHLIB_LINK) -L/c/PostgreSQL/8.0.2/lib -lpostgres
>
> wktparse.tab.c: wktparse.y
>  $(YACC) -vd -p lwg_parse_yy wktparse.y
>  mv -f y.tab.c wktparse.tab.c
>  mv -f y.tab.h wktparse.tab.h
>
>
> lex.yy.c: wktparse.lex wktparse.tab.c
>  $(FLEX) -Plwg_parse_yy -i -f -o'lex.yy.c' wktparse.lex
>
> lwgeom_jts_wrapper.o: lwgeom_jts_wrapper.cpp
>
> lwgeom_geos_wrapper.o: lwgeom_geos_wrapper.cpp
>
> lwgeom_geos.o: lwgeom_geos.c profile.h
>
> lwgeom_jts.o: lwgeom_jts.c profile.h
>
> lwgeom_nojts.o: lwgeom_nojts.c
>
> lwgeom_functions_basic.o: lwgeom_functions_basic.c profile.h
>
> # Shared library stuff
>
> ../lwpostgis.sql: lwpostgis.sql
>  cp lwpostgis.sql ..
>
> lwpostgis.sql: lwpostgis.sql.in
>  cpp -P -traditional-cpp -DUSE_VERSION=$(USE_VERSION) $< | sed -e
>
's:@MODULE_FILENAME@:$(MODULE_FILENAME):g;s:@POSTGIS_VERSION@:$(POSTGIS_VERS
>
ION):g;s:@POSTGIS_SCRIPTS_VERSION@:$(SCRIPTS_VERSION):g;s/@POSTGIS_BUILD_DAT
> E@/$(POSTGIS_BUILD_DATE)/g' | grep -v '^#' > $@
>
> install: all install-lwgeom-lib install-lwgeom-scripts
>
> install-lwgeom-scripts:
>  @mkdir -p $(datadir)
>  $(INSTALL_DATA) lwpostgis.sql $(datadir)/lwpostgis.sql
>  $(INSTALL_DATA) ../spatial_ref_sys.sql $(datadir)/spatial_ref_sys.sql
>
> #- This has been copied from postgresql and adapted
> install-lwgeom-lib: $(SHLIB)
>  @mkdir -p $(MODULE_INSTALLDIR)
>  $(INSTALL_LIB) $< $(MODULE_INSTALLDIR)/$(SHLIB)
>
> ifneq ($(PORTNAME), win)
> ifneq ($(SHLIB), $(SHLIB_MAJOR))
>  cd $(MODULE_INSTALLDIR) && \
>  rm -f $(SHLIB_MAHOR) && \
>  ln -sf $(SHLIB) $(SHLIB_MAJOR)
> endif
> ifneq ($(SHLIB), lib$(NAME)$(DLSUFFIX))
>  cd $(MODULE_INSTALLDIR) && \
>  rm -f $(SHLIB_BARE) && \
>  ln -sf $(SHLIB) $(SHLIB_BARE)
> endif
> endif # not win
>
> uninstall-lib:
>  rm -f $(MODULE_INSTALLDIR)/$(SHLIB)
>  rm -f $(MODULE_INSTALLDIR)/$(SHLIB_MAJOR)
>  rm -f $(MODULE_INSTALLDIR)/$(SHLIB_BARE)
>
> #----------------------------------------------------------
>
> detect_geos_version:
>  sh ../geos_version.sh $(GEOS_DIR) > postgis_geos_version.h
>
> uninstall-lwgeom-scripts:
>  rm -f $(datadir)/postgis/lwpostgis.sql
>  rm -f $(datadir)/postgis/spatial_ref_sys.sql
>
> uninstall: uninstall-lib uninstall-lwgeom-scripts
>
> clean-lib:
>  rm -f $(SHLIB) $(SHLIB_MAJOR) $(SHLIB_BARE)
>
> clean distclean: clean-lib
>  rm -f *.o *.so *.a test $(OTHERS)
>
> maintainer-clean: clean
>  rm  -f lex.yy.c wktparse.tab.c wktparse.tab.h
>
> liblwgeom_sa.o: liblwgeom.c
>  $(CC) -DSTANDALONE -o $@ -c $<
>
> liblwgeom_sa.so: $(SA_OBJS) liblwgeom_sa.o
>  $(CC) -shared -o $@ $^
>
> liblwgeom_sa.a: $(SA_OBJS) liblwgeom_sa.o
>  $(AR) -rc $@ $^
>
>
> test: liblwgeom_sa.so liblwgeom_sa.a test.c
>  $(CC) -Wall -lm -g -o test test.c liblwgeom_sa.a
>
> tsort:
>  lorder $(SA_OBJS) | tsort
>
>
============================================================================
> ================================
> ===================================== postgis.log
> ===============================================================
> make -C lwgeom
> make[1]: Entering directory `/home/david/sources/PostGIS/postgis/lwgeom'
> sh ../geos_version.sh /c/PostgreSQL/8.0.2 > postgis_geos_version.h
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o measures.o measures.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o box2d.o box2d.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o ptarray.o ptarray.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_api.o lwgeom_api.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -

>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom.o lwgeom.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwpoint.o lwpoint.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwline.o lwline.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwpoly.o lwpoly.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwmpoint.o lwmpoint.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwmline.o lwmline.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwmpoly.o lwmpoly.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwcollection.o lwcollection.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
g++ -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
>   -c -o lwgeom_geos_wrapper.o lwgeom_geos_wrapper.cpp
> cc1plus.exe: warning: -fPIC ignored for target (all code is position
>    independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o wktunparse.o wktunparse.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgparse.o lwgparse.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o wktparse.tab.o wktparse.tab.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lex.yy.o lex.yy.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
> lex.yy.c:3044: warning: `yyunput' defined but not used
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o vsprintf.o vsprintf.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
> vsprintf.c:131: warning: no previous prototype for `vasprintf'
> vsprintf.c:147: warning: no previous prototype for `asprintf'
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o liblwgeom.o liblwgeom.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_pg.o lwgeom_pg.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_debug.o lwgeom_debug.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_spheroid.o lwgeom_spheroid.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_ogc.o lwgeom_ogc.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_functions_analytic.o
lwgeom_functions_analytic.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_geos.o lwgeom_geos.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_inout.o lwgeom_inout.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_estimate.o lwgeom_estimate.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/

> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_functions_basic.o lwgeom_functions_basic.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_gist.o lwgeom_gist.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_btree.o lwgeom_btree.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_transform.o lwgeom_transform.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o stringBuffer.o stringBuffer.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_box.o lwgeom_box.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_box3d.o lwgeom_box3d.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_box2dfloat4.o lwgeom_box2dfloat4.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_chip.o lwgeom_chip.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_svg.o lwgeom_svg.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_gml.o lwgeom_gml.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_triggers.o lwgeom_triggers.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
>
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -
>
O2 -fexceptions -fPIC -DUSE_VERSION=80 -DPOSTGIS_LIB_VERSION='"1.0.0"' -DPOS
> TGIS_SCRIPTS_VERSION='"0.3.0"' -DPOSTGIS_BUILD_DATE='"2005-04-22
>
09:36:56"' -I/c/PostgreSQL/8.0.2/include -DUSE_GEOS -I/c/PostgreSQL/8.0.2/bi
>
n/../include -DUSE_PROJ  -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/
> c/PostgreSQL/8.0.2/include/postgresql/server/port/win32 -DAUTOCACHE_BBOX=1
> -DUSE_STATS   -c -o lwgeom_dump.o lwgeom_dump.c
> cc1.exe: warning: -fPIC ignored for target (all code is position
> independent)
> dlltool --export-all  --output-def lwgeom.def measures.o box2d.o ptarray.o
> lwgeom_api.o lwgeom.o lwpoint.o lwline.o lwpoly.o lwmpoint.o lwmline.o
> lwmpoly.o lwcollection.o lwgeom_geos_wrapper.o  wktunparse.o lwgparse.o
> wktparse.tab.o lex.yy.o vsprintf.o liblwgeom.o lwgeom_pg.o lwgeom_debug.o
> lwgeom_spheroid.o lwgeom_ogc.o lwgeom_functions_analytic.o lwgeom_geos.o
> lwgeom_inout.o lwgeom_estimate.o lwgeom_functions_basic.o lwgeom_gist.o
> lwgeom_btree.o lwgeom_transform.o stringBuffer.o lwgeom_box.o
lwgeom_box3d.o
> lwgeom_box2dfloat4.o lwgeom_chip.o lwgeom_svg.o lwgeom_gml.o
> lwgeom_triggers.o lwgeom_dump.o
> dllwrap  -o liblwgeom.dll --dllname liblwgeom.dll  --def lwgeom.def
> measures.o box2d.o ptarray.o lwgeom_api.o lwgeom.o lwpoint.o lwline.o
> lwpoly.o lwmpoint.o lwmline.o lwmpoly.o lwcollection.o
lwgeom_geos_wrapper.o
> wktunparse.o lwgparse.o wktparse.tab.o lex.yy.o vsprintf.o liblwgeom.o
> lwgeom_pg.o lwgeom_debug.o lwgeom_spheroid.o lwgeom_ogc.o
> lwgeom_functions_analytic.o lwgeom_geos.o lwgeom_inout.o lwgeom_estimate.o
> lwgeom_functions_basic.o lwgeom_gist.o lwgeom_btree.o lwgeom_transform.o
> stringBuffer.o lwgeom_box.o lwgeom_box3d.o lwgeom_box2dfloat4.o
> lwgeom_chip.o lwgeom_svg.o lwgeom_gml.o lwgeom_triggers.o
>
wgeom_dump.o  -lstdc++ -L/c/PostgreSQL/8.0.2/lib -lgeos -L/c/PostgreSQL/8.0.
> 2/bin/../lib -lproj -L/c/PostgreSQL/8.0.2/lib -lpostgres
> Info: resolving _pj_errno by linking to __imp__pj_errno (auto-import)
> Info: resolving _pj_release by linking to __imp__pj_release (auto-import)
> Info: resolving _pj_errno by linking to __imp__pj_errno (auto-import)
> Info: resolving _pj_release by linking to __imp__pj_release (auto-import)
> Info: resolving _pj_errno by linking to __imp__pj_errno (auto-import)
> Info: resolving _pj_release by linking to __imp__pj_release (auto-import)
> cpp -P -traditional-cpp -DUSE_VERSION=80 lwpostgis.sql.in | sed -e
> 's:@MODULE_FILENAME@:\$libdir/liblwgeom.so.1.0:g;s:@POSTGIS_VERSION@:1.0
> USE_GEOS=1 USE_PROJ=1
>
USE_STATS=1:g;s:@POSTGIS_SCRIPTS_VERSION@:0.3.0:g;s/@POSTGIS_BUILD_DATE@/200
> 5-04-22 09:36:56/g' | grep -v '^#' > lwpostgis.sql
> cp lwpostgis.sql ..
> make[1]: Leaving directory `/home/david/sources/PostGIS/postgis/lwgeom'
> make -C loader
> make[1]: Entering directory `/home/david/sources/PostGIS/postgis/loader'
>
gcc -g -Wall -I.. -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict
> -aliasing -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/c/PostgreSQL/
8.
> 0.2/include/postgresql/server/port/win32 -DUSE_VERSION=80   -c -o
shpopen.o
> shpopen.c
> shpopen.c:176: warning: `rcsid' defined but not used
>
gcc -g -Wall -I.. -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict
> -aliasing -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/c/PostgreSQL/
8.
> 0.2/include/postgresql/server/port/win32 -DUSE_VERSION=80   -c -o
dbfopen.o
> dbfopen.c
> dbfopen.c:200: warning: `rcsid' defined but not used
>
gcc -g -Wall -I.. -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict
> -aliasing -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/c/PostgreSQL/
8.
> 0.2/include/postgresql/server/port/win32 -DUSE_VERSION=80   -c -o getopt.o
> getopt.c
> getopt.c:115: warning: conflicting types for built-in function `strncmp'
> getopt.c:602: warning: no previous prototype for `getopt'
>
gcc -g -Wall -I.. -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict
> -aliasing -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/c/PostgreSQL/
8.
> 0.2/include/postgresql/server/port/win32 -DUSE_VERSION=80   -c -o
> shp2pgsql.o shp2pgsql.c
>
gcc -g -Wall -I.. -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict
> -aliasing -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/c/PostgreSQL/
8.
> 0.2/include/postgresql/server/port/win32 -DUSE_VERSION=80 shpopen.o
> dbfopen.o getopt.o shp2pgsql.o  -o shp2pgsql.exe
>
gcc -g -Wall -I.. -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict
> -aliasing -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/c/PostgreSQL/
8.
>
0.2/include/postgresql/server/port/win32 -DUSE_VERSION=80 -I/c/PostgreSQL/8.
> 0.2/include -c pgsql2shp.c
> pgsql2shp.c: In function `parse_commandline':
> pgsql2shp.c:2290: warning: implicit declaration of function `getopt'
>
gcc -g -Wall -I.. -O2 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict
> -aliasing -I/c/PostgreSQL/8.0.2/include/postgresql/server -I/c/PostgreSQL/
8.
>
0.2/include/postgresql/server/port/win32 -DUSE_VERSION=80 -I/c/PostgreSQL/8.
>
0.2/include/postgresql/server -I/c/PostgreSQL/8.0.2/include/postgresql/serve
> r/port/win32 shpopen.o dbfopen.o getopt.o PQunescapeBytea.o pgsql2shp.o
> /c/PostgreSQL/8.0.2/lib/libpq.a  -o pgsql2shp.exe
> make[1]: Leaving directory `/home/david/sources/PostGIS/postgis/loader'
> make -C utils
> make[1]: Entering directory `/home/david/sources/PostGIS/postgis/utils'
> chmod +x postgis_restore.pl profile_intersects.pl test_estimation.pl
> test_joinestimation.pl
> make[1]: Leaving directory `/home/david/sources/PostGIS/postgis/utils'
> make -C doc
> make[1]: Entering directory `/home/david/sources/PostGIS/postgis/doc'
> make[1]: Nothing to be done for `all'.
> make[1]: Leaving directory `/home/david/sources/PostGIS/postgis/doc'
>
============================================================================
> ==================================
>


----------------------------------------------------------------------------
----


> _______________________________________________
> postgis-users mailing list
> postgis-users at postgis.refractions.net
> http://postgis.refractions.net/mailman/listinfo/postgis-users
>






More information about the postgis-users mailing list