diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-07 10:46:02 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-07 10:46:02 +0000 |
commit | 1fdc0e664e74b7f89c199e3c2852c24dd33b8bd3 (patch) | |
tree | 2daee1c900e84cd41e014732c15766323342ded9 /Projects/Webserver/makefile | |
parent | 196724c62d8c09b30dabb9a8ff3246033d95315f (diff) | |
download | lufa-1fdc0e664e74b7f89c199e3c2852c24dd33b8bd3.tar.gz lufa-1fdc0e664e74b7f89c199e3c2852c24dd33b8bd3.tar.bz2 lufa-1fdc0e664e74b7f89c199e3c2852c24dd33b8bd3.zip |
Make Webserver allow HTTP requests for files with up to 50 characters in the path instead of 30, to be in synch with the project documentation.
Change Webserver project's ENABLE_DHCP compile time option to ENABLE_DHCP_CLIENT to more accurately indicate its function.
Diffstat (limited to 'Projects/Webserver/makefile')
-rw-r--r-- | Projects/Webserver/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/Webserver/makefile b/Projects/Webserver/makefile index 98ee03ca4..2097988b3 100644 --- a/Projects/Webserver/makefile +++ b/Projects/Webserver/makefile @@ -198,9 +198,9 @@ CSTANDARD = -std=gnu99 # Place -D or -U options here for C sources
CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(LUFA_OPTS)
-CDEFS += -DENABLE_DHCP=1
+CDEFS += -DENABLE_DHCP_CLIENT=1
-CDEFS += -DUIP_CONF_UDP=ENABLE_DHCP -DUIP_CONF_TCP=1 -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_MAX_CONNECTIONS=5
+CDEFS += -DUIP_CONF_UDP=ENABLE_DHCP_CLIENT -DUIP_CONF_TCP=1 -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_MAX_CONNECTIONS=5
CDEFS += -DUIP_CONF_MAX_LISTENPORTS=5 -DUIP_URGDATA=0 -DUIP_CONF_BUFFER_SIZE=1514 -DUIP_ARCH_CHKSUM=0
CDEFS += -DUIP_CONF_LL_802154=0 -DUIP_CONF_LL_80211=0 -DUIP_CONF_ROUTER=0 -DUIP_CONF_ICMP6=0
CDEFS += -DUIP_ARCH_ADD32=0 -DUIP_CONF_ICMP_DEST_UNREACH=1 -DUIP_NEIGHBOR_CONF_ADDRTYPE=0
|