aboutsummaryrefslogtreecommitdiffstats
path: root/mail/cyrus-imapd24/files/patch-bg
blob: 682657fe28b330004a954ca2d57d5c50d6fbf27e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
4c4
< # Generated automatically using autoconf version 2.12 
---
> # Generated automatically using autoconf version 2.13 
110a111
> SHELL=${CONFIG_SHELL-/bin/sh}
394c395
<     echo "configure generated by autoconf version 2.12"
---
>     echo "configure generated by autoconf version 2.13"
564c565
< ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
---
> ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
566a568,569
> ac_exeext=
> ac_objext=o
584c587
< echo "configure:585: checking for $ac_word" >&5
---
> echo "configure:588: checking for $ac_word" >&5
591,592c594,596
<   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
<   for ac_dir in $PATH; do
---
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do
660c664
< echo "configure:661: checking for $ac_word" >&5
---
> echo "configure:665: checking for $ac_word" >&5
667,668c671,673
<   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
<   for ac_dir in $PATH; do
---
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do
689c694
< echo "configure:690: checking for $ac_word" >&5
---
> echo "configure:695: checking for $ac_word" >&5
696c701
<   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
---
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
698c703,704
<   for ac_dir in $PATH; do
---
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do
732a739,772
>   if test -z "$CC"; then
>     case "`uname -s`" in
>     *win32* | *WIN32*)
>       # Extract the first word of "cl", so it can be a program name with args.
> set dummy cl; ac_word=$2
> echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
> echo "configure:746: checking for $ac_word" >&5
> if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
>   echo $ac_n "(cached) $ac_c" 1>&6
> else
>   if test -n "$CC"; then
>   ac_cv_prog_CC="$CC" # Let the user override the test.
> else
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do
>     test -z "$ac_dir" && ac_dir=.
>     if test -f $ac_dir/$ac_word; then
>       ac_cv_prog_CC="cl"
>       break
>     fi
>   done
>   IFS="$ac_save_ifs"
> fi
> fi
> CC="$ac_cv_prog_CC"
> if test -n "$CC"; then
>   echo "$ac_t""$CC" 1>&6
> else
>   echo "$ac_t""no" 1>&6
> fi
>  ;;
>     esac
>   fi
737c777
< echo "configure:738: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
---
> echo "configure:778: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
743c783
< ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
---
> ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
746,747c786,788
< cat > conftest.$ac_ext <<EOF
< #line 748 "configure"
---
> cat > conftest.$ac_ext << EOF
> 
> #line 789 "configure"
748a790
> 
751c793
< if { (eval echo configure:752: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:794: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
764a807,812
> ac_ext=c
> # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
> ac_cpp='$CPP $CPPFLAGS'
> ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
> ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
> cross_compiling=$ac_cv_prog_cc_cross
771c819
< echo "configure:772: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
---
> echo "configure:820: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
776c824
< echo "configure:777: checking whether we are using GNU C" >&5
---
> echo "configure:825: checking whether we are using GNU C" >&5
785c833
< if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:786: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
---
> if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:834: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
796,800c844,852
<   ac_test_CFLAGS="${CFLAGS+set}"
<   ac_save_CFLAGS="$CFLAGS"
<   CFLAGS=
<   echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
< echo "configure:801: checking whether ${CC-cc} accepts -g" >&5
---
> else
>   GCC=
> fi
> 
> ac_test_CFLAGS="${CFLAGS+set}"
> ac_save_CFLAGS="$CFLAGS"
> CFLAGS=
> echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
> echo "configure:853: checking whether ${CC-cc} accepts -g" >&5
815,817c867,870
<   if test "$ac_test_CFLAGS" = set; then
<     CFLAGS="$ac_save_CFLAGS"
<   elif test $ac_cv_prog_cc_g = yes; then
---
> if test "$ac_test_CFLAGS" = set; then
>   CFLAGS="$ac_save_CFLAGS"
> elif test $ac_cv_prog_cc_g = yes; then
>   if test "$GCC" = yes; then
820c873
<     CFLAGS="-O2"
---
>     CFLAGS="-g"
823,824c876,880
<   GCC=
<   test "${CFLAGS+set}" = set || CFLAGS="-g"
---
>   if test "$GCC" = yes; then
>     CFLAGS="-O2"
>   else
>     CFLAGS=
>   fi
830c886
< echo "configure:831: checking for $ac_word" >&5
---
> echo "configure:887: checking for $ac_word" >&5
837,838c893,895
<   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
<   for ac_dir in $PATH; do
---
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do
857c914
< echo "configure:858: checking whether ${MAKE-make} sets \${MAKE}" >&5
---
> echo "configure:915: checking whether ${MAKE-make} sets \${MAKE}" >&5
908a966
> # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
913c971
< echo "configure:914: checking for a BSD compatible install" >&5
---
> echo "configure:972: checking for a BSD compatible install" >&5
918c976
<     IFS="${IFS=   }"; ac_save_IFS="$IFS"; IFS="${IFS}:"
---
>     IFS="${IFS=   }"; ac_save_IFS="$IFS"; IFS=":"
925c983,985
<       for ac_prog in ginstall installbsd scoinst install; do
---
>       # Don't use installbsd from OSF since it installs stuff as root
>       # by default.
>       for ac_prog in ginstall scoinst install; do
930d989
<       # OSF/1 installbsd also uses dspmsg, but is usable.
959a1019,1020
> test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
> 
963c1024
< echo "configure:964: checking how to run the C preprocessor" >&5
---
> echo "configure:1025: checking how to run the C preprocessor" >&5
978c1039
< #line 979 "configure"
---
> #line 1040 "configure"
984,985c1045,1046
< { (eval echo configure:985: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:1046: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
995c1056
< #line 996 "configure"
---
> #line 1057 "configure"
1001,1002c1062,1080
< { (eval echo configure:1002: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:1063: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
> if test -z "$ac_err"; then
>   :
> else
>   echo "$ac_err" >&5
>   echo "configure: failed program was:" >&5
>   cat conftest.$ac_ext >&5
>   rm -rf conftest*
>   CPP="${CC-cc} -nologo -E"
>   cat > conftest.$ac_ext <<EOF
> #line 1074 "configure"
> #include "confdefs.h"
> #include <assert.h>
> Syntax Error
> EOF
> ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
> { (eval echo configure:1080: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1014a1093,1094
> fi
> rm -f conftest*
1024c1104
< echo "configure:1025: checking for AIX" >&5
---
> echo "configure:1105: checking for AIX" >&5
1026c1106
< #line 1027 "configure"
---
> #line 1107 "configure"
1048c1128
< echo "configure:1049: checking for POSIXized ISC" >&5
---
> echo "configure:1129: checking for POSIXized ISC" >&5
1073c1153
< echo "configure:1074: checking for $ac_word" >&5
---
> echo "configure:1154: checking for $ac_word" >&5
1080,1081c1160,1162
<   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
<   for ac_dir in $PATH; do
---
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do
1102c1183
< echo "configure:1103: checking for working const" >&5
---
> echo "configure:1184: checking for working const" >&5
1107c1188
< #line 1108 "configure"
---
> #line 1189 "configure"
1156c1237
< if { (eval echo configure:1157: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:1238: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
1177c1258
< echo "configure:1178: checking for long file names" >&5
---
> echo "configure:1259: checking for long file names" >&5
1226c1307
< echo "configure:1227: checking for runpath switch" >&5
---
> echo "configure:1308: checking for runpath switch" >&5
1235c1316
< #line 1236 "configure"
---
> #line 1317 "configure"
1242c1323
< if { (eval echo configure:1243: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1324: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1252c1333
< #line 1253 "configure"
---
> #line 1334 "configure"
1259c1340
< if { (eval echo configure:1260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1341: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1291c1372
< echo "configure:1292: checking for $ac_hdr" >&5
---
> echo "configure:1373: checking for $ac_hdr" >&5
1296c1377
< #line 1297 "configure"
---
> #line 1378 "configure"
1301,1302c1382,1383
< { (eval echo configure:1302: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:1383: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1330c1411
< echo "configure:1331: checking for $ac_func" >&5
---
> echo "configure:1412: checking for $ac_func" >&5
1335c1416
< #line 1336 "configure"
---
> #line 1417 "configure"
1358c1439
< if { (eval echo configure:1359: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1440: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1379c1460
< LIBOBJS="$LIBOBJS ${ac_func}.o"
---
> LIBOBJS="$LIBOBJS ${ac_func}.${ac_objext}"
1389c1470
< echo "configure:1390: checking for $ac_hdr that defines DIR" >&5
---
> echo "configure:1471: checking for $ac_hdr that defines DIR" >&5
1394c1475
< #line 1395 "configure"
---
> #line 1476 "configure"
1402c1483
< if { (eval echo configure:1403: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:1484: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
1427c1508
< echo "configure:1428: checking for opendir in -ldir" >&5
---
> echo "configure:1509: checking for opendir in -ldir" >&5
1435c1516
< #line 1436 "configure"
---
> #line 1517 "configure"
1446c1527
< if { (eval echo configure:1447: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1528: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1468c1549
< echo "configure:1469: checking for opendir in -lx" >&5
---
> echo "configure:1550: checking for opendir in -lx" >&5
1476c1557
< #line 1477 "configure"
---
> #line 1558 "configure"
1487c1568
< if { (eval echo configure:1488: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1569: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1516c1597
< echo "configure:1517: checking for vprintf" >&5
---
> echo "configure:1598: checking for vprintf" >&5
1521c1602
< #line 1522 "configure"
---
> #line 1603 "configure"
1544c1625
< if { (eval echo configure:1545: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1626: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1568c1649
< echo "configure:1569: checking for _doprnt" >&5
---
> echo "configure:1650: checking for _doprnt" >&5
1573c1654
< #line 1574 "configure"
---
> #line 1655 "configure"
1596c1677
< if { (eval echo configure:1597: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1678: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1622c1703
< echo "configure:1623: checking for strerror" >&5
---
> echo "configure:1704: checking for strerror" >&5
1627c1708
< #line 1628 "configure"
---
> #line 1709 "configure"
1650c1731
< if { (eval echo configure:1651: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1732: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1679c1760
< echo "configure:1680: checking for setproctitle" >&5
---
> echo "configure:1761: checking for setproctitle" >&5
1684c1765
< #line 1685 "configure"
---
> #line 1766 "configure"
1707c1788
< if { (eval echo configure:1708: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1789: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1728c1809
< echo "configure:1729: checking for setproctitle in -lutil" >&5
---
> echo "configure:1810: checking for setproctitle in -lutil" >&5
1736c1817
< #line 1737 "configure"
---
> #line 1818 "configure"
1747c1828
< if { (eval echo configure:1748: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:1829: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1772c1853
< echo "configure:1773: checking for sys/pstat.h" >&5
---
> echo "configure:1854: checking for sys/pstat.h" >&5
1777c1858
< #line 1778 "configure"
---
> #line 1859 "configure"
1782,1783c1863,1864
< { (eval echo configure:1783: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:1864: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1807c1888
< echo "configure:1808: checking for sys/sysnews.h" >&5
---
> echo "configure:1889: checking for sys/sysnews.h" >&5
1812c1893
< #line 1813 "configure"
---
> #line 1894 "configure"
1817,1818c1898,1899
< { (eval echo configure:1818: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:1899: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1841c1922
< echo "configure:1842: checking for PS_STRINGS" >&5
---
> echo "configure:1923: checking for PS_STRINGS" >&5
1846c1927
< #line 1847 "configure"
---
> #line 1928 "configure"
1856,1857c1937,1938
< { (eval echo configure:1857: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:1938: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1878c1959
< echo "configure:1879: checking for SCO" >&5
---
> echo "configure:1960: checking for SCO" >&5
1883c1964
< #line 1884 "configure"
---
> #line 1965 "configure"
1891,1892c1972,1973
< { (eval echo configure:1892: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:1973: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1913c1994
< echo "configure:1914: checking for setproctitle usability" >&5
---
> echo "configure:1995: checking for setproctitle usability" >&5
1918c1999
< #line 1919 "configure"
---
> #line 2000 "configure"
1926,1927c2007,2008
< { (eval echo configure:1927: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:2008: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1954c2035
< echo "configure:1955: checking nonblocking method" >&5
---
> echo "configure:2036: checking nonblocking method" >&5
1959c2040
< #line 1960 "configure"
---
> #line 2041 "configure"
1971c2052
< if { (eval echo configure:1972: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2053: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1988c2069
< echo "configure:1989: checking timezone GMT offset method" >&5
---
> echo "configure:2070: checking timezone GMT offset method" >&5
1993c2074
< #line 1994 "configure"
---
> #line 2075 "configure"
2003c2084
< if { (eval echo configure:2004: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:2085: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
2019c2100
< echo "configure:2020: checking for shared mmap" >&5
---
> echo "configure:2101: checking for shared mmap" >&5
2027c2108
< #line 2028 "configure"
---
> #line 2109 "configure"
2055c2136
< if { (eval echo configure:2056: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
---
> if { (eval echo configure:2137: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
2074c2155
< echo "configure:2075: checking for stupid shared mmap" >&5
---
> echo "configure:2156: checking for stupid shared mmap" >&5
2082c2163
< #line 2083 "configure"
---
> #line 2164 "configure"
2111c2192
< if { (eval echo configure:2112: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
---
> if { (eval echo configure:2193: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
2130c2211
< echo "configure:2131: checking for non-shared mmap" >&5
---
> echo "configure:2212: checking for non-shared mmap" >&5
2138c2219
< #line 2139 "configure"
---
> #line 2220 "configure"
2239c2320
< if { (eval echo configure:2240: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
---
> if { (eval echo configure:2321: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
2274c2355
< echo "configure:2275: checking for flock" >&5
---
> echo "configure:2356: checking for flock" >&5
2279c2360
< #line 2280 "configure"
---
> #line 2361 "configure"
2302c2383
< if { (eval echo configure:2303: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2384: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2332c2413
< echo "configure:2333: checking for sigvec" >&5
---
> echo "configure:2414: checking for sigvec" >&5
2337c2418
< #line 2338 "configure"
---
> #line 2419 "configure"
2360c2441
< if { (eval echo configure:2361: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2442: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2381c2462
< echo "configure:2382: checking for sigvec in -lBSD" >&5
---
> echo "configure:2463: checking for sigvec in -lBSD" >&5
2389c2470
< #line 2390 "configure"
---
> #line 2471 "configure"
2400c2481
< if { (eval echo configure:2401: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2422c2503
< echo "configure:2423: checking for sigvec in -lucb" >&5
---
> echo "configure:2504: checking for sigvec in -lucb" >&5
2430c2511
< #line 2431 "configure"
---
> #line 2512 "configure"
2441c2522
< if { (eval echo configure:2442: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2523: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2485c2566
< echo "configure:2486: checking for Kerberos" >&5
---
> echo "configure:2567: checking for Kerberos" >&5
2520c2601
< echo "configure:2521: checking for crypt" >&5
---
> echo "configure:2602: checking for crypt" >&5
2525c2606
< #line 2526 "configure"
---
> #line 2607 "configure"
2548c2629
< if { (eval echo configure:2549: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2630: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2566c2647
< echo "configure:2567: checking for crypt in -lcrypt" >&5
---
> echo "configure:2648: checking for crypt in -lcrypt" >&5
2574c2655
< #line 2575 "configure"
---
> #line 2656 "configure"
2585c2666
< if { (eval echo configure:2586: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2667: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2618c2699
< echo "configure:2619: checking if Kerberos looks sane" >&5
---
> echo "configure:2700: checking if Kerberos looks sane" >&5
2650c2731
< echo "configure:2651: checking for getspnam" >&5
---
> echo "configure:2732: checking for getspnam" >&5
2655c2736
< #line 2656 "configure"
---
> #line 2737 "configure"
2678c2759
< if { (eval echo configure:2679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2760: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2752c2833
< echo "configure:2753: checking if AFS libraries have pr_End" >&5
---
> echo "configure:2834: checking if AFS libraries have pr_End" >&5
2754c2835
< #line 2755 "configure"
---
> #line 2836 "configure"
2761c2842
< if { (eval echo configure:2762: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2843: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2794c2875
< echo "configure:2795: checking if AFS libraries need sigvec" >&5
---
> echo "configure:2876: checking if AFS libraries need sigvec" >&5
2796c2877
< #line 2797 "configure"
---
> #line 2878 "configure"
2803c2884
< if { (eval echo configure:2804: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:2885: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2896c2977
< echo "configure:2897: checking for $ac_word" >&5
---
> echo "configure:2978: checking for $ac_word" >&5
2903a2985,2987
>   ?:/*)            
>   ac_cv_path_TCLSH="$TCLSH" # Let the user override the test with a dos path.
>   ;;
2905,2906c2989,2991
<   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
<   for ac_dir in $PATH; do
---
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do 
2933c3018
< echo "configure:2934: checking where Tcl says it lives" >&5
---
> echo "configure:3019: checking where Tcl says it lives" >&5
2953c3038
< echo "configure:2954: checking for tclConfig.sh" >&5
---
> echo "configure:3039: checking for tclConfig.sh" >&5
2975c3060
< echo "configure:2976: checking with Tcl on how it says it should be compiled" >&5
---
> echo "configure:3061: checking with Tcl on how it says it should be compiled" >&5
2980c3065
< echo "configure:2981: checking where Tcl includes are" >&5
---
> echo "configure:3066: checking where Tcl includes are" >&5
2998c3083
< echo "configure:2999: checking for dbopen" >&5
---
> echo "configure:3084: checking for dbopen" >&5
3003c3088
< #line 3004 "configure"
---
> #line 3089 "configure"
3026c3111
< if { (eval echo configure:3027: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3112: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3048c3133
< echo "configure:3049: checking for dbopen in -ldb" >&5
---
> echo "configure:3134: checking for dbopen in -ldb" >&5
3056c3141
< #line 3057 "configure"
---
> #line 3142 "configure"
3067c3152
< if { (eval echo configure:3068: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3097c3182
< echo "configure:3098: checking for dbm_open in -lndbm" >&5
---
> echo "configure:3183: checking for dbm_open in -lndbm" >&5
3105c3190
< #line 3106 "configure"
---
> #line 3191 "configure"
3116c3201
< if { (eval echo configure:3117: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3202: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3144c3229
< echo "configure:3145: checking for dbm_open in -ldbm" >&5
---
> echo "configure:3230: checking for dbm_open in -ldbm" >&5
3152c3237
< #line 3153 "configure"
---
> #line 3238 "configure"
3163c3248
< if { (eval echo configure:3164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3249: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3200c3285
< echo "configure:3201: checking for location of Kerberos install" >&5
---
> echo "configure:3286: checking for location of Kerberos install" >&5
3257c3342
< echo "configure:3258: checking for res_search" >&5
---
> echo "configure:3343: checking for res_search" >&5
3262c3347
< #line 3263 "configure"
---
> #line 3348 "configure"
3285c3370
< if { (eval echo configure:3286: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3371: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3303c3388
< echo "configure:3304: checking for res_search in -lresolv" >&5
---
> echo "configure:3389: checking for res_search in -lresolv" >&5
3311c3396
< #line 3312 "configure"
---
> #line 3397 "configure"
3322c3407
< if { (eval echo configure:3323: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3408: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3350a3436,3482
>         echo $ac_n "checking for init_error_table in -lcom_err""... $ac_c" 1>&6
> echo "configure:3438: checking for init_error_table in -lcom_err" >&5
> ac_lib_var=`echo com_err'_'init_error_table | sed 'y%./+-%__p_%'`
> if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
>   echo $ac_n "(cached) $ac_c" 1>&6
> else
>   ac_save_LIBS="$LIBS"
> LIBS="-lcom_err  $LIBS"
> cat > conftest.$ac_ext <<EOF
> #line 3446 "configure"
> #include "confdefs.h"
> /* Override any gcc2 internal prototype to avoid an error.  */
> /* We use char because int might match the return type of a gcc2
>     builtin and then its argument prototype would still apply.  */
> char init_error_table();
> 
> int main() {
> init_error_table()
> ; return 0; }
> EOF
> if { (eval echo configure:3457: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
>   rm -rf conftest*
>   eval "ac_cv_lib_$ac_lib_var=yes"
> else
>   echo "configure: failed program was:" >&5
>   cat conftest.$ac_ext >&5
>   rm -rf conftest*
>   eval "ac_cv_lib_$ac_lib_var=no"
> fi
> rm -f conftest*
> LIBS="$ac_save_LIBS"
> 
> fi
> if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
>   echo "$ac_t""yes" 1>&6
>     ac_tr_lib=HAVE_LIB`echo com_err | sed -e 's/[^a-zA-Z0-9_]/_/g' \
>     -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
>   cat >> confdefs.h <<EOF
> #define $ac_tr_lib 1
> EOF
> 
>   LIBS="-lcom_err $LIBS"
> 
> else
>   echo "$ac_t""no" 1>&6
> fi
> 
3353c3485
< echo "configure:3354: checking for crypt" >&5
---
> echo "configure:3486: checking for crypt" >&5
3358c3490
< #line 3359 "configure"
---
> #line 3491 "configure"
3381c3513
< if { (eval echo configure:3382: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3399c3531
< echo "configure:3400: checking for crypt in -lcrypt" >&5
---
> echo "configure:3532: checking for crypt in -lcrypt" >&5
3407c3539
< #line 3408 "configure"
---
> #line 3540 "configure"
3418c3550
< if { (eval echo configure:3419: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3551: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3449c3581
< echo "configure:3450: checking for des_ecb_encrypt in -ldes" >&5
---
> echo "configure:3582: checking for des_ecb_encrypt in -ldes" >&5
3457c3589
< #line 3458 "configure"
---
> #line 3590 "configure"
3468c3600
< if { (eval echo configure:3469: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3601: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3491c3623
< echo "configure:3492: checking for krb_realmofhost in -lkrb4" >&5
---
> echo "configure:3624: checking for krb_realmofhost in -lkrb4" >&5
3499c3631
< #line 3500 "configure"
---
> #line 3632 "configure"
3510c3642
< if { (eval echo configure:3511: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3643: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3536c3668
< echo "configure:3537: checking for krb_realmofhost in -lkrb" >&5
---
> echo "configure:3669: checking for krb_realmofhost in -lkrb" >&5
3544c3676
< #line 3545 "configure"
---
> #line 3677 "configure"
3555c3687
< if { (eval echo configure:3556: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3688: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3587c3719
< echo "configure:3588: checking for Kerberos includes" >&5
---
> echo "configure:3720: checking for Kerberos includes" >&5
3612c3744
< echo "configure:3613: checking for basename" >&5
---
> echo "configure:3745: checking for basename" >&5
3617c3749
< #line 3618 "configure"
---
> #line 3750 "configure"
3640c3772
< if { (eval echo configure:3641: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3773: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3658c3790
< echo "configure:3659: checking for basename in -liberty" >&5
---
> echo "configure:3791: checking for basename in -liberty" >&5
3666c3798
< #line 3667 "configure"
---
> #line 3799 "configure"
3677c3809
< if { (eval echo configure:3678: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3810: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3733c3865
< echo "configure:3734: checking for ZInitialize in -lzephyr" >&5
---
> echo "configure:3866: checking for ZInitialize in -lzephyr" >&5
3741c3873
< #line 3742 "configure"
---
> #line 3874 "configure"
3752c3884
< if { (eval echo configure:3753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3885: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3804c3936
< echo "configure:3805: checking for com_err in -lcom_err" >&5
---
> echo "configure:3937: checking for com_err in -lcom_err" >&5
3812c3944
< #line 3813 "configure"
---
> #line 3945 "configure"
3823c3955
< if { (eval echo configure:3824: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:3956: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3846c3978
< echo "configure:3847: checking for $ac_word" >&5
---
> echo "configure:3979: checking for $ac_word" >&5
3853a3986,3988
>   ?:/*)            
>   ac_cv_path_COMPILE_ET="$COMPILE_ET" # Let the user override the test with a dos path.
>   ;;
3855,3856c3990,3992
<   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
<   for ac_dir in $PATH; do
---
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do 
3884c4020
< echo "configure:3885: checking for $ac_word" >&5
---
> echo "configure:4021: checking for $ac_word" >&5
3891a4028,4030
>   ?:/*)            
>   ac_cv_path_COMPILE_ET="$COMPILE_ET" # Let the user override the test with a dos path.
>   ;;
3893,3894c4032,4034
<   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
<   for ac_dir in $PATH; do
---
>   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS=":"
>   ac_dummy="$PATH"
>   for ac_dir in $ac_dummy; do 
3998c4138
< echo "configure:3999: checking for modern syslog" >&5
---
> echo "configure:4139: checking for modern syslog" >&5
4003c4143
< #line 4004 "configure"
---
> #line 4144 "configure"
4011,4012c4151,4152
< { (eval echo configure:4012: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
< ac_err=`grep -v '^ *+' conftest.out`
---
> { (eval echo configure:4152: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
> ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4048c4188
< echo "configure:4049: checking for $ac_func" >&5
---
> echo "configure:4189: checking for $ac_func" >&5
4053c4193
< #line 4054 "configure"
---
> #line 4194 "configure"
4076c4216
< if { (eval echo configure:4077: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:4217: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4097c4237
< LIBOBJS="$LIBOBJS ${ac_func}.o"
---
> LIBOBJS="$LIBOBJS ${ac_func}.${ac_objext}"
4145c4285
< echo "configure:4146: checking for gethostbyname" >&5
---
> echo "configure:4286: checking for gethostbyname" >&5
4150c4290
< #line 4151 "configure"
---
> #line 4291 "configure"
4173c4313
< if { (eval echo configure:4174: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:4314: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4194c4334
< echo "configure:4195: checking for gethostbyname in -lnsl" >&5
---
> echo "configure:4335: checking for gethostbyname in -lnsl" >&5
4202c4342
< #line 4203 "configure"
---
> #line 4343 "configure"
4213c4353
< if { (eval echo configure:4214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:4354: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4235c4375
< echo "configure:4236: checking for connect" >&5
---
> echo "configure:4376: checking for connect" >&5
4240c4380
< #line 4241 "configure"
---
> #line 4381 "configure"
4263c4403
< if { (eval echo configure:4264: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:4404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4284c4424
< echo "configure:4285: checking for connect in -lsocket" >&5
---
> echo "configure:4425: checking for connect in -lsocket" >&5
4292c4432
< #line 4293 "configure"
---
> #line 4433 "configure"
4303c4443
< if { (eval echo configure:4304: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
---
> if { (eval echo configure:4444: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4349c4489
<   case `(ac_space=' '; set) 2>&1` in
---
>   case `(ac_space=' '; set | grep ac_space) 2>&1` in
4428c4568
<     echo "$CONFIG_STATUS generated by autoconf version 2.12"
---
>     echo "$CONFIG_STATUS generated by autoconf version 2.13"
4447a4588
> s%@SHELL@%$SHELL%g
4450a4592
> s%@FFLAGS@%$FFLAGS%g
4476a4619
> s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g