You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2009/03/05 17:34:15 UTC

svn commit: r750502 - in /httpd/apreq/trunk: library/Makefile.am module/apache2/apreq_module_apache2.h

Author: joes
Date: Thu Mar  5 16:34:15 2009
New Revision: 750502

URL: http://svn.apache.org/viewvc?rev=750502&view=rev
Log:
more fixes based on list feedback

Modified:
    httpd/apreq/trunk/library/Makefile.am
    httpd/apreq/trunk/module/apache2/apreq_module_apache2.h

Modified: httpd/apreq/trunk/library/Makefile.am
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/library/Makefile.am?rev=750502&r1=750501&r2=750502&view=diff
==============================================================================
--- httpd/apreq/trunk/library/Makefile.am (original)
+++ httpd/apreq/trunk/library/Makefile.am Thu Mar  5 16:34:15 2009
@@ -16,11 +16,11 @@
 
 clean-local:
 	-rm *.bb *.bbg *.da *.gcov
-
+	cd t; $(MAKE) clean
 else
 
 clean-local:
-
+	cd t; $(MAKE) clean
 endif
 
 

Modified: httpd/apreq/trunk/module/apache2/apreq_module_apache2.h
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/module/apache2/apreq_module_apache2.h?rev=750502&r1=750501&r2=750502&view=diff
==============================================================================
--- httpd/apreq/trunk/module/apache2/apreq_module_apache2.h (original)
+++ httpd/apreq/trunk/module/apache2/apreq_module_apache2.h Thu Mar  5 16:34:15 2009
@@ -146,8 +146,8 @@
  *      
  */
 #ifdef WIN32
-APR_DECLARE_OPTIONAL_FN(apreq_handle_t * __stdcall,
-                        apreq_handle_apache2, (request_rec *r));
+typedef apreq_handle_t * (__stdcall apr_OFN_apreq_handle_apache2_t)
+         (request_rec *r);
 #else
 APR_DECLARE_OPTIONAL_FN(apreq_handle_t *,
                         apreq_handle_apache2, (request_rec *r));