Busybox: Upgrade to 1.21.1 (stable). lsof active.
[tomato.git] / release / src / router / libpcap / configure.rej
blobd8e893da7acd779bbadfaf13266e2e55800e767a
1 --- configure   2008-10-27 18:26:13.000000000 -0700
2 +++ configure   2008-12-15 08:55:54.000000000 -0800
3 @@ -684,6 +684,8 @@
4  V_LIBS
5  V_PCAP
6  V_FINDALLDEVS
7 +V_HAVE_REMOTE
8 +V_REMOTE_FILES
9  SSRC
10  DYEXT
11  DAGLIBS
12 @@ -1283,6 +1285,7 @@
13    --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
14    --disable-largefile     omit support for large files
15    --disable-protochain    disable \"protochain\" insn
16 +  --disable-remote        disable remote capture capabilities
17    --enable-ipv6           build IPv6-capable version [default=yes, if getaddrinfo available]
18    --enable-optimizer-dbg  build optimizer debugging code
19    --enable-yydebug        build parser debugging code
20 @@ -3887,11 +3890,13 @@
21  cat confdefs.h >>conftest.$ac_ext
22  cat >>conftest.$ac_ext <<_ACEOF
23  /* end confdefs.h.  */
24 -#include <stdio.h>
25 +#include <sys/types.h> /* for off_t */
26 +     #include <stdio.h>
27  int
28  main ()
29  {
30 -return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
31 +int (*fp) (FILE *, off_t, int) = fseeko;
32 +     return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
33    ;
34    return 0;
35  }
36 @@ -3931,11 +3936,13 @@
37  cat >>conftest.$ac_ext <<_ACEOF
38  /* end confdefs.h.  */
39  #define _LARGEFILE_SOURCE 1
40 -#include <stdio.h>
41 +#include <sys/types.h> /* for off_t */
42 +     #include <stdio.h>
43  int
44  main ()
45  {
46 -return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
47 +int (*fp) (FILE *, off_t, int) = fseeko;
48 +     return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
49    ;
50    return 0;
51  }
52 @@ -10221,6 +10293,8 @@
53  V_LIBS!$V_LIBS$ac_delim
54  V_PCAP!$V_PCAP$ac_delim
55  V_FINDALLDEVS!$V_FINDALLDEVS$ac_delim
56 +V_HAVE_REMOTE!$V_HAVE_REMOTE$ac_delim
57 +V_REMOTE_FILES!$V_REMOTE_FILES$ac_delim
58  SSRC!$SSRC$ac_delim
59  DYEXT!$DYEXT$ac_delim
60  DAGLIBS!$DAGLIBS$ac_delim
61 @@ -10237,7 +10311,7 @@
62  LTLIBOBJS!$LTLIBOBJS$ac_delim
63  _ACEOF
65 -  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 84; then
66 +  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 86; then
67      break
68    elif $ac_last_try; then
69      { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5