diff --git a/examples/dhcpd/target.c b/examples/dhcpd/target.c
index 6977bf46a3d4cb8cb1a7aba420e5e2badbe24497..7e2104dd7b14b3c31fdc3e3a2f29f62884885382 100644
--- a/examples/dhcpd/target.c
+++ b/examples/dhcpd/target.c
@@ -45,6 +45,40 @@
 #include <net/uip/uip-lib.h>
 #include <net/uip/dhcpd.h>
 
+/****************************************************************************
+ * Preprocessor Definitions
+ ****************************************************************************/
+
+/* Configuation Checkes *****************************************************/
+/* BEWARE:
+ * There are other configuration settings needed in netutitls/dhcpd/dhcpdc.s,
+ * but there are default values for those so we cannot check them here.
+ */
+
+#ifndef CONFIG_EXAMPLE_DHCPD_IPADDR
+#  error "You must define CONFIG_EXAMPLE_DHCPD_IPADDR"
+#endif
+
+#ifndef CONFIG_EXAMPLE_DHCPD_DRIPADDR
+#  error "You must define "
+#endif
+
+#ifndef CONFIG_EXAMPLE_DHCPD_NETMASK
+#  error "You must define CONFIG_EXAMPLE_DHCPD_NETMASK"
+#endif
+
+#ifndef CONFIG_NET
+#  error "You must define CONFIG_NET"
+#endif
+
+#ifndef CONFIG_NET_UDP
+#  error "You must define CONFIG_NET_UDP"
+#endif
+
+#ifndef CONFIG_NET_BROADCAST
+#  error "You must define CONFIG_NET_BROADCAST"
+#endif
+
 /****************************************************************************
  * Private Data
  ****************************************************************************/