At 2010-11-30 20:57:24,"Ben Noordhuis" <i...@bnoordhuis.nl> wrote:

>2010/11/30 whut_jia <whut_...@163.com>:
>> I write a module by C++ supporting the generation of SAML assertion, so in 
>> my  module I called the OpenSAML Library.The question is how I compile this 
>> source file written by c++ language into my apache server.
>
>Like you compile any mixed project: define a function in your C++ code
>with C linkage[1] and call it from your C code. Compile .c and .cc
>files to object files, then link them into a shared object.
>
>apxs2 probably won't be much help here, it doesn't seem to handle C++
>source files (at least, it never does in my projects).
>
>[1] extern "C" void entrypoint(void *data) { /* ... */ }

Thank you for your replay,
In Apache2.2, I compile a c++ source file with g++ as below:
g++ -fPIC -shared -o mod_validate.so mod_validate.cpp -I/usr/include/httpd 
-I/usr/include/apr-1 -I/opt/opensaml/include
After it , I copy mod_calidate.so into apache module location ,and this module 
work well.
But now,in apache2.3,I compile this file in  the same way.it accurs the 
following error,
     /apache2.3/include/http_config.h:989:error:expected ","or "..." before 
‘new’
(In headers file ,The 989th  line is:
AP_DECLARE(void) ap_merge_log_config(const struct ap_logconf *old,
                                     struct ap_logconf *new);
)
I think there are not errors in this line ,but why can i compile it 
successfullly?
Thank you,
Jia

Reply via email to