summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJon Loeliger <jdl@jdl.com>2006-09-26 14:47:43 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-09-28 01:00:52 (GMT)
commitdd4676299dde0a4c6f8a471e6353170f86a78c8a (patch)
tree82c634ecf07370a2190ee40c075bb07864f455fc /Makefile
parenta3f5d02edb2c1a037ed3ed8d2ebd3f3e5da9d198 (diff)
downloadgit-dd4676299dde0a4c6f8a471e6353170f86a78c8a.zip
git-dd4676299dde0a4c6f8a471e6353170f86a78c8a.tar.gz
git-dd4676299dde0a4c6f8a471e6353170f86a78c8a.tar.bz2
Cleaned up git-daemon virtual hosting support.
Standardized on lowercase hostnames from client. Added interpolation values for the IP address, port and canonical hostname of the server as it is contacted and named by the client and passed in via the extended args. Added --listen=host_or_ipaddr option suport. Renamed port variable as "listen_port" correspondingly as well. Documented mutual exclusivity of --inetd option with --user, --group, --listen and --port options. Added compat/inet_pton.c from Paul Vixie as needed. Small memory leaks need to be cleaned up still. Signed-off-by: Jon Loeliger <jdl@jdl.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 28091d6..e68b4c0 100644
--- a/Makefile
+++ b/Makefile
@@ -524,6 +524,9 @@ endif
ifdef NO_INET_NTOP
LIB_OBJS += compat/inet_ntop.o
endif
+ifdef NO_INET_PTON
+ LIB_OBJS += compat/inet_pton.o
+endif
ifdef NO_ICONV
ALL_CFLAGS += -DNO_ICONV