aboutsummaryrefslogtreecommitdiff
path: root/src/make.code.defn
diff options
context:
space:
mode:
authorgoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2001-05-18 09:35:49 +0000
committergoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2001-05-18 09:35:49 +0000
commitd8f1697495666e3a90f1a6e438ad7111469e2f6a (patch)
tree7cfa1a8a4b76a9602aed683fbe087597def3aaa0 /src/make.code.defn
parent8b12a1b456d296db9c305a1f008dbf93f515301c (diff)
Moving John's redirection stuff into a file of its own as it is a logically
independent system. All files except Startup.c and make.code.defn should be pretty much back at their beta10 state if you're trying to track this change back in time. Redirect stuff is now in Redirect.c and http_Redirect.h. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@129 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'src/make.code.defn')
-rw-r--r--src/make.code.defn5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/make.code.defn b/src/make.code.defn
index d18d185..869a536 100644
--- a/src/make.code.defn
+++ b/src/make.code.defn
@@ -15,12 +15,15 @@ AUTHENTICATION_SRC = Authorisation.c base64.c
COOKIES_SRC = Cookies.c
+REDIRECTION_SRC = Redirect.c
+
SRCS = $(MISC_SRC) \
$(SERVER_SRC) \
$(CONTENT_SRC) \
$(STEERING_SRC) \
$(AUTHENTICATION_SRC) \
- $(COOKIES_SRC)
+ $(COOKIES_SRC) \
+ $(REDIRECTION_SRC)
# set the _LIBC flag to prevent gcc warnings in base64.c
CFLAGS += -D_LIBC