Update of /cvsroot/dhcp-agent/dhcp-agent/src
In directory sc8-pr-cvs1:/tmp/cvs-serv11458/src
Modified Files:
dhcp-local.h
Log Message:
added check for in_addr_t
Index: dhcp-local.h
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/src/dhcp-local.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** dhcp-local.h 11 Jun 2003 03:08:49 -0000 1.7
--- dhcp-local.h 27 Jul 2003 00:30:08 -0000 1.8
***************
*** 108,111 ****
--- 108,116 ----
#endif /* INADDR_NONE */
+ /* some systems don't have in_addr_t (thanks openpkg maintainers) */
+ #ifndef HAVE_IN_ADDR_T
+ typedef uint32_t in_addr_t;
+ #endif
+
/* Some operating systems don't have SCNu8/SCNd8 but will have
* the other C99 format macros. I guess they expect us just to
|