]> granicus.if.org Git - apache/commitdiff
Include apr_lib.h for the definition of apr_toupper() to get rid of
authorCliff Woolley <jwoolley@apache.org>
Mon, 24 Jun 2002 07:17:36 +0000 (07:17 +0000)
committerCliff Woolley <jwoolley@apache.org>
Mon, 24 Jun 2002 07:17:36 +0000 (07:17 +0000)
undefined symbol link failures (apr_toupper is a macro, at least on
Unix).

Reported by:  Trawick's regression build

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95878 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_case_filter.c
modules/experimental/mod_case_filter_in.c

index 532963bf17453eb8fee18637703faa46164957d9..869d7633735707e2d215baa6f655108be12a67b2 100644 (file)
@@ -2,9 +2,10 @@
 
 #include "httpd.h"
 #include "http_config.h"
+#include "apr_buckets.h"
 #include "apr_general.h"
+#include "apr_lib.h"
 #include "util_filter.h"
-#include "apr_buckets.h"
 #include "http_request.h"
 
 #include <ctype.h>
index 98cc89463884b1484bc62427928bb3c3187fc899..8e25763cff11fc4521605cecdbbab277c97b8eb4 100644 (file)
 
 #include "httpd.h"
 #include "http_config.h"
+#include "apr_buckets.h"
 #include "apr_general.h"
+#include "apr_lib.h"
 #include "util_filter.h"
-#include "apr_buckets.h"
 #include "http_request.h"
 
 #include <ctype.h>