Commit f864a63a authored by Jacob Champion's avatar Jacob Champion
Browse files

httpdunit: fix check.h on Windows

Check seems to have trouble with type definitions when using a
CMake+Windows toolchain. Include apr.h before check.h to ensure pid_t
exists.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpdunit@1796205 13f79535-47bb-0310-9956-ffa450edef68
parent fca65df6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
 * limitations under the License.
 */

#include "apr.h"   /* for pid_t on Windows, needed by Check */
#include "check.h"

#include "apr_general.h"
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@
 * using a similar generate-stub-and-include process.
 */

#include "apr.h"   /* for pid_t on Windows, needed by Check */
#include "check.h"

/*