You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by pq...@apache.org on 2006/07/16 00:46:29 UTC

svn commit: r422311 - /apr/apr/trunk/include/apr.h.in

Author: pquerna
Date: Sat Jul 15 15:46:29 2006
New Revision: 422311

URL: http://svn.apache.org/viewvc?rev=422311&view=rev
Log:
Add a definition of apr_wait_t to the autoconf based build, when using mingw32.

Modified:
    apr/apr/trunk/include/apr.h.in

Modified: apr/apr/trunk/include/apr.h.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr.h.in?rev=422311&r1=422310&r2=422311&view=diff
==============================================================================
--- apr/apr/trunk/include/apr.h.in (original)
+++ apr/apr/trunk/include/apr.h.in Sat Jul 15 15:46:29 2006
@@ -398,6 +398,8 @@
 #define WEXITSTATUS(status)    (int)((status).w_retcode)
 #define WTERMSIG(status)       (int)((status).w_termsig)
 #endif /* !WEXITSTATUS */
+#elif defined(__MINGW32__)
+typedef int apr_wait_t;
 #endif /* HAVE_SYS_WAIT_H */
 
 #if defined(PATH_MAX)