Ticket #2282: zoo-patch-test1.patch
File zoo-patch-test1.patch, 3.4 KB (added by , 4 years ago) |
---|
-
thirds/otb2zcfg/otb2zcfg.cxx
284 284 printOutputComplexImage(m_Application->GetParameterComplexOutputImagePixelType(paramKey)); 285 285 }else{ 286 286 std::cout << " <ComplexData>" << std::endl; 287 if(type == ParameterType_InputImage || type == ParameterType_InputImageList || type == ParameterType_ComplexInputImage){287 if(type == ParameterType_InputImage || type == ParameterType_InputImageList){ 288 288 printImages(); 289 289 } 290 290 else … … 337 337 338 338 if(paramKey!="inxml" && paramKey!="outxml" && 339 339 ((type == ParameterType_OutputVectorData || type == ParameterType_OutputImage 340 || type == ParameterType_OutputImage || type == ParameterType_ComplexOutputImage340 || type == ParameterType_OutputImage //|| type == ParameterType_ComplexOutputImage 341 341 || type == ParameterType_OutputFilename) || role==1) && type != ParameterType_Group){ 342 342 hasOutput=1; 343 343 std::vector<std::string> values; -
zoo-project/zoo-kernel/configure.ac
414 414 # Check headers file 415 415 CPPFLAGS_SAVE="$CPPFLAGS" 416 416 CPPFLAGS="$PROJ_CPPFLAGS" 417 AC_CHECK_HEADERS([proj_api.h],418 [], [AC_MSG_ERROR([could not find headers include related to PROJ4])])417 #AC_CHECK_HEADERS([proj_api.h], 418 # [], [AC_MSG_ERROR([could not find headers include related to PROJ4])]) 419 419 420 420 AC_SUBST([PROJ_CPPFLAGS]) 421 421 AC_SUBST([PROJ_LDFLAGS]) -
zoo-project/zoo-kernel/service_internal_otb.c
361 361 } 362 362 else 363 363 if(type == ParameterType_InputImage 364 || type == ParameterType_ ComplexInputImage || type == ParameterType_InputVectorData364 || type == ParameterType_InputVectorData 365 365 || type == ParameterType_InputFilename){ 366 366 m_Application->SetParameterString(paramKey, test->value); 367 367 } -
zoo-project/zoo-kernel/ulinet.h
33 33 #endif 34 34 #include "jsapi.h" 35 35 #endif 36 #include "fcgi_stdio.h"36 //#include "fcgi_stdio.h" 37 37 #include <stdlib.h> 38 38 #include <fcntl.h> 39 39 #include <curl/curl.h> -
zoo-project/zoo-services/ogr/base-vect-ops/service.c
37 37 #include "service.h" 38 38 #include "service_internal.h" 39 39 40 extern "C" {41 40 #include <libxml/tree.h> 42 41 #include <libxml/parser.h> 43 42 #include <libxml/xpath.h> 44 43 #include <libxml/xpathInternals.h> 45 44 46 /*#include <openssl/sha.h> 47 #include <openssl/hmac.h> 48 #include <openssl/evp.h> 49 #include <openssl/bio.h> 50 #include <openssl/buffer.h> 51 */ 45 extern "C" { 52 46 47 53 48 void printExceptionReportResponse(maps*,map*); 54 49 char *base64(const char *input, int length); 55 50