Changeset 1698
- Timestamp:
- 02/24/07 18:29:24 (23 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
configure.in (modified) (1 diff)
-
src/common/sendpacket.c (modified) (1 diff)
-
src/config.h.in (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.in
r1697 r1698 108 108 109 109 dnl Check for other header files 110 AC_CHECK_HEADERS([fcntl.h stddef.h sys/socket.h arpa/inet.h sys/time.h signal.h string.h strings.h sys/types.h sys/select.h netinet/in.h poll.h sys/poll.h unistd.h ])110 AC_CHECK_HEADERS([fcntl.h stddef.h sys/socket.h arpa/inet.h sys/time.h signal.h string.h strings.h sys/types.h sys/select.h netinet/in.h poll.h sys/poll.h unistd.h net/route.h sys/sysctl.h]) 111 111 112 112 dnl Checks for libraries. -
trunk/src/common/sendpacket.c
r1697 r1698 81 81 #include <sys/ioctl.h> 82 82 #include <sys/file.h> 83 //#include <sys/sysctl.h> 84 //#include <net/route.h> 83 #ifdef HAVE_SYS_SYSCTL_H 84 #include <sys/sysctl.h> 85 #endif 86 #ifdef HAVE_NET_ROUTE_H 87 #include <net/route.h> 88 #endif 85 89 #include <stdlib.h> 86 90 #include <unistd.h> -
trunk/src/config.h.in
r1643 r1698 15 15 /* Enable building flowreplay (alpha) */ 16 16 #undef ENABLE_FLOWREPLAY 17 18 /* Enable building tcpbridge (beta) */ 19 #undef ENABLE_TCPBRIDGE 17 20 18 21 /* fopen(3) accepts a 'b' in the mode flag */ … … 141 144 #undef HAVE_NETINET_IN_H 142 145 146 /* Define to 1 if you have the <net/route.h> header file. */ 147 #undef HAVE_NET_ROUTE_H 148 143 149 /* Define to 1 if you have the `ntohll' function. */ 144 150 #undef HAVE_NTOHLL … … 262 268 /* Define to 1 if you have the <sys/stropts.h> header file. */ 263 269 #undef HAVE_SYS_STROPTS_H 270 271 /* Define to 1 if you have the <sys/sysctl.h> header file. */ 272 #undef HAVE_SYS_SYSCTL_H 264 273 265 274 /* Define to 1 if you have the <sys/time.h> header file. */
