Github user parthchandra commented on the issue:

    https://github.com/apache/drill/pull/602
  
    @laurentgo What version of zookeeper libs are you using on Windows?
    FindZookeeper is failing for me because my version (3.4.6), has a 
zookeeper.lib file, not zookeeper_d.lib.
    
    Also, I get the following with cmake - 
    
    > CMake Error at CMakeLists.txt:43 (string):
    >   string sub-command REGEX, mode REPLACE needs at least 6 arguments total 
to
    >   command.
    >
    
    Tracked it down to select-xml not finding the drill version in the pom file 
    
    > PS C:\Users\Administrator\Documents\drill\contrib> Select-Xml -Namespace 
@{'m'='http://maven.apache.org/POM/4.0.0'} -XPath 
'//m:project/m:version/text()' -Path 
C:\Users\Administrator\Documents\drill\contrib\native\client\..\..\pom.xml | 
foreach {$_.Node.Value}
    > PS C:\Users\Administrator\Documents\drill\contrib>
    > PS C:\Users\Administrator\Documents\drill\contrib>
    > 
    
    This, however, works -
    
    > PS C:\Users\Administrator\Documents\drill\contrib> Select-Xml -Namespace 
@{'m'='http://maven.apache.org/POM/4.0.0'} -XPath 
'//m:project/m:version/text()' -Path 
C:\Users\Administrator\Documents\drill\contrib\native\client\..\..\pom.xml | 
foreach {$_.Node.Value}
    > PS C:\Users\Administrator\Documents\drill\contrib>
    > PS C:\Users\Administrator\Documents\drill\contrib> Select-Xml -Namespace 
@{'m'='http://maven.apache.org/POM/4.0.0'} -XPath 
'//m:project/m:parent/m:version/text()' -Path 
C:\Users\Administrator\Documents\drill\contrib\native\client\..\..\pom.xml | 
foreach {$_.Node.V
    > alue}
    > 1.9.0-SNAPSHOT
    > PS C:\Users\Administrator\Documents\drill\contrib>
    > 
    
    Also, the Debug build has a new warning it would be nice if this can be 
removed, not a showstopper though) -
    ```
    4>C:\Program Files (x86)\Microsoft Visual Studio 
12.0\VC\include\xutility(2132): warning C4996: 'std::_Copy_impl': Function call 
with parameters that may be unsafe - this call relies on the caller to check 
that the passed values are correct. To disable this warning, use 
-D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked 
Iterators'
    4>          C:\Program Files (x86)\Microsoft Visual Studio 
12.0\VC\include\xutility(2113) : see declaration of 'std::_Copy_impl'
    4>          
C:\Users\Administrator\Documents\drill\contrib\native\client\src\clientlib\drillClientImpl.cpp(561)
 : see reference to function template instantiation '_OutIt 
std::copy<std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<std::basic_string<char,std::char_traits<char>,std::allocator<char>>>>>,google::protobuf::internal::RepeatedPtrFieldBackInsertIterator<std::string>>(_InIt,_InIt,_OutIt)'
 being compiled
    4>          with
    4>          [
    4>              
_OutIt=google::protobuf::internal::RepeatedPtrFieldBackInsertIterator<std::string>
    4>  ,            
_InIt=std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<std::basic_string<char,std::char_traits<char>,std::allocator<char>>>>>
    4>          ]
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to