1 --- configure 2008-06-15 08:05:12.000000000 +0200
2 +++ nmap/configure 2008-07-11 22:21:40.000000000 +0200
3 @@ -6571,68 +6571,68 @@
6 { echo "$as_me:$LINENO: checking if libpcap version is recent enough" >&5
7 -echo $ECHO_N "checking if libpcap version is recent enough... $ECHO_C" >&6; }
8 - if test "$cross_compiling" = yes; then
9 - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
10 -See \`config.log' for more details." >&5
11 -echo "$as_me: error: cannot run test program while cross compiling
12 -See \`config.log' for more details." >&2;}
13 - { (exit 1); exit 1; }; }
15 - cat >conftest.$ac_ext <<_ACEOF
18 -cat confdefs.h >>conftest.$ac_ext
19 -cat >>conftest.$ac_ext <<_ACEOF
20 -/* end confdefs.h. */
23 -extern char pcap_version[];
25 - int major, minor1, minor2;
26 - sscanf(pcap_version,"%d.%d.%d", &major, &minor1, &minor2);
36 -rm -f conftest$ac_exeext
37 -if { (ac_try="$ac_link"
39 - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
40 - *) ac_try_echo=$ac_try;;
42 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
43 - (eval "$ac_link") 2>&5
45 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
46 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
47 - { (case "(($ac_try" in
48 - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
49 - *) ac_try_echo=$ac_try;;
51 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
52 - (eval "$ac_try") 2>&5
54 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
55 - (exit $ac_status); }; }; then
56 - { echo "$as_me:$LINENO: result: yes" >&5
57 -echo "${ECHO_T}yes" >&6; }; have_libpcap=yes
59 - echo "$as_me: program exited with status $ac_status" >&5
60 -echo "$as_me: failed program was:" >&5
61 -sed 's/^/| /' conftest.$ac_ext >&5
64 -{ echo "$as_me:$LINENO: result: no" >&5
65 +#echo $ECHO_N "checking if libpcap version is recent enough... $ECHO_C" >&6; }
66 +# if test "$cross_compiling" = yes; then
67 +# { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
68 +#See \`config.log' for more details." >&5
69 +#echo "$as_me: error: cannot run test program while cross compiling
70 +#See \`config.log' for more details." >&2;}
71 +# { (exit 1); exit 1; }; }
73 +# cat >conftest.$ac_ext <<_ACEOF
76 +#cat confdefs.h >>conftest.$ac_ext
77 +#cat >>conftest.$ac_ext <<_ACEOF
78 +#/* end confdefs.h. */
81 +#extern char pcap_version[];
83 +# int major, minor1, minor2;
84 +# sscanf(pcap_version,"%d.%d.%d", &major, &minor1, &minor2);
94 +#rm -f conftest$ac_exeext
95 +#if { (ac_try="$ac_link"
97 +# *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
98 +# *) ac_try_echo=$ac_try;;
100 +#eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
101 +# (eval "$ac_link") 2>&5
103 +# echo "$as_me:$LINENO: \$? = $ac_status" >&5
104 +# (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
105 +# { (case "(($ac_try" in
106 +# *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
107 +# *) ac_try_echo=$ac_try;;
109 +#eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
110 +# (eval "$ac_try") 2>&5
112 +# echo "$as_me:$LINENO: \$? = $ac_status" >&5
113 +# (exit $ac_status); }; }; then
114 +# { echo "$as_me:$LINENO: result: yes" >&5
115 +#echo "${ECHO_T}yes" >&6; }; have_libpcap=yes
117 +# echo "$as_me: program exited with status $ac_status" >&5
118 +#echo "$as_me: failed program was:" >&5
119 +#sed 's/^/| /' conftest.$ac_ext >&5
121 +#( exit $ac_status )
122 +#{ echo "$as_me:$LINENO: result: no" >&5
123 echo "${ECHO_T}no" >&6; }; have_libpcap=no
125 -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
128 +#rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
133 @@ -7658,59 +7658,59 @@
134 { echo "$as_me:$LINENO: checking for lua version >= 501" >&5
135 echo $ECHO_N "checking for lua version >= 501... $ECHO_C" >&6; }
137 -if test "$cross_compiling" = yes; then
138 - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
139 -See \`config.log' for more details." >&5
140 -echo "$as_me: error: cannot run test program while cross compiling
141 -See \`config.log' for more details." >&2;}
142 - { (exit 1); exit 1; }; }
144 - cat >conftest.$ac_ext <<_ACEOF
147 -cat confdefs.h >>conftest.$ac_ext
148 -cat >>conftest.$ac_ext <<_ACEOF
149 -/* end confdefs.h. */
154 -if(LUA_VERSION_NUM < 501) return 1;
159 -rm -f conftest$ac_exeext
160 -if { (ac_try="$ac_link"
162 - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
163 - *) ac_try_echo=$ac_try;;
165 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
166 - (eval "$ac_link") 2>&5
168 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
169 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
170 - { (case "(($ac_try" in
171 - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
172 - *) ac_try_echo=$ac_try;;
174 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
175 - (eval "$ac_try") 2>&5
177 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
178 - (exit $ac_status); }; }; then
181 - echo "$as_me: program exited with status $ac_status" >&5
182 -echo "$as_me: failed program was:" >&5
183 -sed 's/^/| /' conftest.$ac_ext >&5
188 -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
190 +#if test "$cross_compiling" = yes; then
191 +# { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
192 +#See \`config.log' for more details." >&5
193 +#echo "$as_me: error: cannot run test program while cross compiling
194 +#See \`config.log' for more details." >&2;}
195 +# { (exit 1); exit 1; }; }
197 +# cat >conftest.$ac_ext <<_ACEOF
200 +#cat confdefs.h >>conftest.$ac_ext
201 +#cat >>conftest.$ac_ext <<_ACEOF
202 +#/* end confdefs.h. */
207 +#if(LUA_VERSION_NUM < 501) return 1;
212 +#rm -f conftest$ac_exeext
213 +#if { (ac_try="$ac_link"
214 +#case "(($ac_try" in
215 +# *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
216 +# *) ac_try_echo=$ac_try;;
218 +#eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
219 +# (eval "$ac_link") 2>&5
221 +# echo "$as_me:$LINENO: \$? = $ac_status" >&5
222 +# (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
223 +# { (case "(($ac_try" in
224 +# *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
225 +# *) ac_try_echo=$ac_try;;
227 +#eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
228 +# (eval "$ac_try") 2>&5
230 +# echo "$as_me:$LINENO: \$? = $ac_status" >&5
231 +# (exit $ac_status); }; }; then
234 +# echo "$as_me: program exited with status $ac_status" >&5
235 +#echo "$as_me: failed program was:" >&5
236 +#sed 's/^/| /' conftest.$ac_ext >&5
238 +#( exit $ac_status )
241 +#rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext