diff options
Diffstat (limited to 'apache1x')
-rw-r--r-- | apache1x/Makefile.am | 2 | ||||
-rw-r--r-- | apache1x/mod_httpauth.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apache1x/Makefile.am b/apache1x/Makefile.am index d043935..a768b2e 100644 --- a/apache1x/Makefile.am +++ b/apache1x/Makefile.am @@ -7,7 +7,7 @@ INC=-I../ -I../common/ all: mod_httpauth.so -mod_httpauth.so: mod_httpauth.c ../common/sock_any.c +mod_httpauth.so: mod_httpauth.c ../common/sock-any.c @APXS@ -c -Wc,-g -Wc,-O0 $(DEF) $(INC) $(LIB) mod_httpauth.c # install the DSO file into the Apache installation diff --git a/apache1x/mod_httpauth.c b/apache1x/mod_httpauth.c index fffaf9d..bb71ea7 100644 --- a/apache1x/mod_httpauth.c +++ b/apache1x/mod_httpauth.c @@ -44,7 +44,7 @@ #include <ap_config.h> #include <ap_alloc.h> -#include "sock_any.h" +#include "sock-any.h" #include "stringx.h" #define DEFAULT_PORT 8020 @@ -898,5 +898,5 @@ module MODULE_VAR_EXPORT httpauth_module = * object file, at least when statically compiled. * so we include this here */ -#include "../common/sock_any.c" +#include "../common/sock-any.c" #include "../common/stringx.c" |