You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2013/07/15 10:36:46 UTC

svn commit: r1503136 - /perl/modperl/branches/httpd24/src/modules/perl/modperl_apache_includes.h

Author: stevehay
Date: Mon Jul 15 08:36:46 2013
New Revision: 1503136

URL: http://svn.apache.org/r1503136
Log:
Fix a linker error when building Apache2::Provider

The symbol ap_register_provider was not being found even though it is exported from libhttpd.lib, which was being linked against. The problem was that no declaration of it had been seen since httpd's ap_provider.h was not being included.

Modified:
    perl/modperl/branches/httpd24/src/modules/perl/modperl_apache_includes.h

Modified: perl/modperl/branches/httpd24/src/modules/perl/modperl_apache_includes.h
URL: http://svn.apache.org/viewvc/perl/modperl/branches/httpd24/src/modules/perl/modperl_apache_includes.h?rev=1503136&r1=1503135&r2=1503136&view=diff
==============================================================================
--- perl/modperl/branches/httpd24/src/modules/perl/modperl_apache_includes.h (original)
+++ perl/modperl/branches/httpd24/src/modules/perl/modperl_apache_includes.h Mon Jul 15 08:36:46 2013
@@ -34,6 +34,7 @@
 #include "http_core.h"
 #include "http_vhost.h"
 #include "ap_mpm.h"
+#include "ap_provider.h"
 
 #include "util_filter.h"