[ 
https://issues.apache.org/jira/browse/THRIFT-2039?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13691263#comment-13691263
 ] 

Hudson commented on THRIFT-2039:
--------------------------------

Integrated in Thrift #747 (See [https://builds.apache.org/job/Thrift/747/])
    THRIFT-2039 config.h --> thrift-config.h (Revision 
9be4e687c49dad1f5d90e93e3b7247be16d50287)
THRIFT-2039 config.h --> thrift-config.h (Revision 
58fe5368328b99c94323c76a05cb9eb51f7730b0)
THRIFT-2039 config.h --> thrift-config.h (Revision 
a1b5728ee6791d2c75d7e0c33315e88b23fd712a)

     Result = SUCCESS
roger : 
Files : 
* lib/cpp/src/thrift/server/TThreadPoolServer.cpp
* lib/cpp/src/thrift/concurrency/StdMonitor.cpp
* lib/cpp/src/thrift/transport/TServerSocket.cpp
* lib/cpp/src/thrift/transport/TSSLSocket.cpp
* lib/cpp/src/thrift/transport/TSimpleFileTransport.cpp
* lib/cpp/src/thrift/concurrency/StdMutex.cpp
* lib/cpp/src/thrift/concurrency/Thread.h
* lib/cpp/src/thrift/transport/TTransportException.cpp
* lib/cpp/src/thrift/concurrency/PosixThreadFactory.cpp
* lib/cpp/src/thrift/transport/TFileTransport.cpp
* lib/cpp/src/thrift/concurrency/BoostThreadFactory.cpp
* lib/cpp/src/thrift/transport/TPipeServer.cpp
* lib/cpp/src/thrift/concurrency/Util.cpp
* lib/cpp/src/thrift/concurrency/Mutex.cpp
* lib/cpp/src/thrift/server/TNonblockingServer.cpp
* lib/cpp/src/thrift/concurrency/PlatformThreadFactory.h
* lib/cpp/src/thrift/concurrency/BoostMonitor.cpp
* lib/cpp/src/thrift/TLogging.h
* lib/cpp/src/thrift/transport/TSocket.cpp
* lib/cpp/src/thrift/concurrency/ThreadManager.cpp
* lib/cpp/src/thrift/concurrency/BoostMutex.cpp
* lib/cpp/src/thrift/transport/TSocketPool.cpp
* lib/cpp/src/thrift/server/TServer.cpp
* lib/cpp/src/thrift/concurrency/StdThreadFactory.cpp
* lib/cpp/src/thrift/Thrift.h

roger : 
Files : 
* configure.ac

roger : 
Files : 
* lib/cpp/src/thrift/thrift-config.h

                
> config.h --> thrift-config.h
> ----------------------------
>
>                 Key: THRIFT-2039
>                 URL: https://issues.apache.org/jira/browse/THRIFT-2039
>             Project: Thrift
>          Issue Type: Improvement
>          Components: C++ - Library
>            Reporter: Konrad Grochowski
>            Assignee: Roger Meier
>         Attachments: THRIFT-2039-thrift_config_h.patch, thrift-config.h
>
>
> I've a problem with config.h: I compile thrift lib as a part of bigger 
> project on both linux and windows. single config.h is not working for me. 
> Also: my project does not contain config.h in root dir, so to make
> {code}#include "config.h"{code} in thrift code I need to modify includes path 
> for thrift sources.
> I've come out with little workaround: I've added thrift-config.h file which 
> "embeds" autotools config.h and predefined config.h for windows.
> {code}
> #ifdef _WIN32
> # include <thrift/windows/config.h>
> #else
> # include <thrift/config.h>
> #endif
> {code}
> and I've changed all occurrences of "config.h" to <thrift/thrift-config.h>
> If I knew anything about autotools I'd also add prefixes to defines - like 
> libevent (something like second patch from THRIFT-705) :)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to