Changeset 873 for branches/prototype-v0/zoo-project/zoo-services
- Timestamp:
- Mar 19, 2018, 3:53:31 PM (7 years ago)
- Location:
- branches/prototype-v0/zoo-project/zoo-services
- Files:
-
- 6 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/prototype-v0/zoo-project/zoo-services/cgal/voronoi.c
r862 r873 197 197 int ns = 0; 198 198 int nr = 0; 199 int nf = 0; 200 Face_iterator fit =T.faces_begin(); 201 FILE* f=fopen("/tmp/toto.log","w+"); 202 for ( ; fit !=T.faces_end(); ++fit) { 203 fprintf(stderr," *** %s %d %d %d\n",__FILE__,__LINE__,nf,fit.info()); 204 fflush(stderr); 205 206 nf++; 207 } 208 fclose(f); 199 209 Edge_iterator eit =T.edges_begin(); 200 210 for ( ; eit !=T.edges_end(); ++eit) { … … 203 213 const Pointz p1=tmp->source(); 204 214 const Pointz p2=tmp->target(); 215 fprintf(stderr,"P1 %d %d | P2 %d %d\n",p1.x(),p1.y(),p2.x(),p2.y()); 205 216 #ifdef DEBUG 206 217 fprintf(stderr,"P1 %d %d | P2 %d %d\n",p1.x(),p1.y(),p2.x(),p2.y()); -
branches/prototype-v0/zoo-project/zoo-services/utils/status/Makefile
r854 r873 1 1 ZRPATH=../../.. 2 2 include ${ZRPATH}/zoo-kernel/ZOOMakefile.opts 3 CFLAGS =-I${INST_INCLUDE} ${ZOO_CFLAGS} ${XML2CFLAGS} ${GDAL_CFLAGS} ${PYTHONCFLAGS} -DLINUX_FREE_ISSUE #-DDEBUG3 CFLAGS1=${CFLAGS} -I${INST_INCLUDE} ${ZOO_CFLAGS} ${XML2CFLAGS} ${GDAL_CFLAGS} ${PYTHONCFLAGS} -DLINUX_FREE_ISSUE #-DDEBUG 4 4 5 5 cgi-env/wps_status.zo: service.c 6 g++ -rdynamic ${CFLAGS} -shared -fpic -o cgi-env/wps_status.zo ./service.c ${GDAL_LIBS} ${XML2LDFLAGS} ${MACOS_LD_FLAGS} ${ZOO_LDFLAGS} ${MACOS_LD_NET_FLAGS} ${XSLT_LDFLAGS} ${FCGI_LDFLAGS} -L${ZRPATH}/zoo-kernel/ -lzoo_service6 g++ ${CFLAGS1} -shared -fpic -o cgi-env/wps_status.zo ./service.c ${GDAL_LIBS} ${XML2LDFLAGS} ${MACOS_LD_FLAGS} ${ZOO_LDFLAGS} ${MACOS_LD_NET_FLAGS} ${XSLT_LDFLAGS} ${FCGI_LDFLAGS} -L${ZRPATH}/zoo-kernel/ -lzoo_service 7 7 8 8 install:
Note: See TracChangeset
for help on using the changeset viewer.