From 5be7b1ebd1ab2bce1d53552b627fe55f425bdb38 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Tue, 12 Nov 2024 13:19:09 -0700 Subject: Fuss with compile-time config --- libdhcp/dhcp_client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libdhcp/dhcp_client.c') diff --git a/libdhcp/dhcp_client.c b/libdhcp/dhcp_client.c index 3673d2c..a7b1d49 100644 --- a/libdhcp/dhcp_client.c +++ b/libdhcp/dhcp_client.c @@ -99,13 +99,13 @@ #include "config.h" #ifndef CONFIG_DHCP_DEBUG - #define CONFIG_DHCP_DEBUG 1 + #error config.h must define CONFIG_DHCP_DEBUG #endif #ifndef CONFIG_DHCP_SELECTING_NS - #define CONFIG_DHCP_SELECTING_NS (5*NS_PER_S) + #error config.h must define CONFIG_DHCP_SELECTING_NS #endif #ifndef CONFIG_DHCP_CAN_RECV_UNICAST_IP_WITHOUT_IP - #define CONFIG_DHCP_CAN_RECV_UNICAST_IP_WITHOUT_IP false + #error config.h must define CONFIG_DHCP_CAN_RECV_UNICAST_IP_WITHOUT_IP #endif /* Implementation *************************************************************/ -- cgit v1.2.3-2-g168b