[dhcp-agent-commits] dhcp-agent configure.ac,1.17,1.18 config.h.in,1.7,1.8
Status: Alpha
Brought to you by:
actmodern
From: <act...@us...> - 2003-07-27 00:30:13
|
Update of /cvsroot/dhcp-agent/dhcp-agent In directory sc8-pr-cvs1:/tmp/cvs-serv11458 Modified Files: configure.ac config.h.in Log Message: added check for in_addr_t Index: configure.ac =================================================================== RCS file: /cvsroot/dhcp-agent/dhcp-agent/configure.ac,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** configure.ac 21 Jul 2003 05:15:16 -0000 1.17 --- configure.ac 27 Jul 2003 00:30:07 -0000 1.18 *************** *** 68,71 **** --- 68,72 ---- AC_CHECK_TYPE(sig_atomic_t, [AC_DEFINE(HAVE_SIG_ATOMIC_T, 1, [have sigatomic_t])], [], [#include <signal.h>]) + AC_CHECK_TYPE(in_addr_t, [AC_DEFINE(HAVE_IN_ADDR_T, 1, [have in_addr_t])], [], [#include <netinet/in.h>]) AC_CHECK_TYPE(struct bpf_timeval, [AC_DEFINE(HAVE_BPF_TIMEVAL, 1, [have struct bpf_timeval])], [], Index: config.h.in =================================================================== RCS file: /cvsroot/dhcp-agent/dhcp-agent/config.h.in,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** config.h.in 16 Jul 2003 05:42:24 -0000 1.7 --- config.h.in 27 Jul 2003 00:30:08 -0000 1.8 *************** *** 28,31 **** --- 28,34 ---- #undef HAVE_INTTYPES_H + /* have in_addr_t */ + #undef HAVE_IN_ADDR_T + /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H |