summaryrefslogtreecommitdiffstats
path: root/kmailcvt/samples/cygwin.mbox
blob: 0a6565b05c16766d8c0aeca3ef72176b00d81fff (plain)
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
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
From cygwin-return-12862-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sat Jul 01 19:33:02 2000
Return-Path: <cygwin-return-12862-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 5314 invoked by alias); 1 Jul 2000 19:33:00 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 5292 invoked from network); 1 Jul 2000 19:32:58 -0000
Received: from oe27.law3.hotmail.com (HELO hotmail.com) (209.185.240.20)
  by sourceware.cygnus.com with SMTP; 1 Jul 2000 19:32:58 -0000
Received: (qmail 64582 invoked by uid 65534); 1 Jul 2000 19:32:22 -0000
Message-ID: <20000701193222.64581.qmail@hotmail.com>
X-Originating-IP: [212.216.213.14]
From: "Meffo Leoni" <mef73@hotmail.com>
To: <cygwin@sourceware.cygnus.com>
Subject: import libraries in VC environment
Date: Sat, 1 Jul 2000 21:31:11 +0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_0043_01BFE3A3.AD4C5AE0"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.00.2615.200
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200

------=_NextPart_000_0043_01BFE3A3.AD4C5AE0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

With the help of the mailing list support I compiled with cygwin wget =
and lapack (light version 1.1).
Now I have a question may I include successfully a library compiled in a =
VC project workspace renaming it *.lib
I need some dll's as the executable wget???

------=_NextPart_000_0043_01BFE3A3.AD4C5AE0
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type>
<META content=3D"MSHTML 5.00.2614.3500" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#c8e0d8>
<DIV><FONT face=3DArial size=3D2>With the help of the mailing list =
support I=20
compiled with cygwin wget and lapack (light version 1.1).</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Now I have a question may I include =
successfully a=20
library compiled in a VC project workspace renaming it =
*.lib</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I need some dll's as the executable=20
wget???</FONT></DIV></BODY></HTML>

------=_NextPart_000_0043_01BFE3A3.AD4C5AE0--

From cygwin-return-12863-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sat Jul 01 20:52:21 2000
Return-Path: <cygwin-return-12863-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 19697 invoked by alias); 1 Jul 2000 20:52:21 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 19675 invoked from network); 1 Jul 2000 20:52:20 -0000
Received: from net047s.hetnet.nl (HELO hetnet.nl) (194.151.104.151)
  by sourceware.cygnus.com with SMTP; 1 Jul 2000 20:52:20 -0000
Received: from hetnet.nl ([195.121.138.40]) by hetnet.nl  with Microsoft SMTPSVC(5.5.1877.387.38);
	 Sat, 1 Jul 2000 22:51:50 +0200
Message-ID: <395E5C61.7087F25E@hetnet.nl>
Date: Sat, 01 Jul 2000 23:02:25 +0200
From: "A.R. Burgers" <arburgers@hetnet.nl>
X-Mailer: Mozilla 4.72 [en] (Win98; I)
X-Accept-Language: en
MIME-Version: 1.0
To: cygwin@sourceware.cygnus.com
Subject: problem building dynamic perl 5.6.0 modules
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi,

I can't build dynamic modules anymore with Chuck Wilson's
perl 5.6.0. E.g. building Storable-0.6.11 (Compress:Zlib
gives the same problem) results in the fatal
errors quoted at the end of this message.

I am using stock cygwin-1.1.2 with all archives from today
on Windows 98SE

Anyone else having this problem or is this specific to my
setup?

thanks

Teun Burgers

erh066#1(~/.cpan/build/Storable-0.6.11)$ make
LD_RUN_PATH="" ld2 -o blib/arch/auto/Storable/Storable.dll 
-L/usr/local/lib Storable.o  
/usr/local/lib/perl5/5.6.0/cygwin/CORE/libperl5_6_0.a
dllwrap --dllname Storable.dll --driver-name gcc --dlltool dlltool
--export-all-
symbols --as as --output-def libStorable.def --output-lib libStorable.a
\
 -L/usr/local/lib Storable.o
/usr/local/lib/perl5/5.6.0/cygwin/CORE/libperl5_6_0.a
dllwrap: no export definition file provided
dllwrap: creating one, but that may not be what you want

Cannot reallocate 1828716544 bytes after allocating 68577308 bytes
perlld: *** system() failed to execute
dllwrap --dllname Storable.dll --driver-name gcc --dlltool dlltool
--export-all-symbols --as as --output-def libStorable.def --output-lib
libStorable.a \
 -L/usr/local/lib Storable.o
/usr/local/lib/perl5/5.6.0/cygwin/CORE/libperl5_6_0.a

make: *** [blib/arch/auto/Storable/Storable.dll] Error 1
[exited with 2]

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12864-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sat Jul 01 21:08:20 2000
Return-Path: <cygwin-return-12864-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 22740 invoked by alias); 1 Jul 2000 21:08:20 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 22719 invoked from network); 1 Jul 2000 21:08:19 -0000
Received: from unknown (HELO smtp3.ev1.net) (207.218.192.47)
  by sourceware.cygnus.com with SMTP; 1 Jul 2000 21:08:19 -0000
Received: from ttimo.ecl1999.ec-lyon.fr [207.218.236.114] by smtp3.ev1.net with ESMTP
  (SMTPD32-5.05) id AE041A18007E; Sat, 01 Jul 2000 16:09:24 -0500
Message-Id: <4.3.1.2.20000701160049.00b9fa70@cc03.cc.ec-lyon.fr>
X-Sender: besset@cc03.cc.ec-lyon.fr
X-Mailer: QUALCOMM Windows Eudora Version 4.3.1
Date: Sat, 01 Jul 2000 16:05:03 -0500
To: cygwin@sourceware.cygnus.com
From: Timothee Besset <timothee.besset@ecl1999.ec-lyon.fr>
Subject: arpa/nameser.h
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"; format=flowed

I'm trying to port a nice IRC client to cygwin, originally written on 
FreeBSD, works fine on every unixes I've tried (FreeBSD, linux, IRIX and 
solaris).

But on cygwin it doesn't find the arpa/nameser.h header. Is there a reason 
why this one is missing? Is it replaced by another one? What should I do to 
work around the problem?

I found this thread in the archive: 
http://sourceware.cygnus.com/ml/cygwin/2000-05/msg00676.html but it doesn't 
have any follow ups..

regards

TTimo


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12865-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sat Jul 01 21:16:37 2000
Return-Path: <cygwin-return-12865-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 24666 invoked by alias); 1 Jul 2000 21:16:36 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 24641 invoked from network); 1 Jul 2000 21:16:36 -0000
Received: from runyon.cygnus.com (HELO cygnus.com) (205.180.230.5)
  by sourceware.cygnus.com with SMTP; 1 Jul 2000 21:16:36 -0000
Received: from rtl.cygnus.com (loony.cygnus.com [205.180.230.181])
	by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id OAA18934
	for <cygwin@sourceware.cygnus.com>; Sat, 1 Jul 2000 14:16:35 -0700 (PDT)
Received: (from cgf@localhost)
	by rtl.cygnus.com (8.9.3/8.8.7) id RAA18470
	for cygwin@sourceware.cygnus.com; Sat, 1 Jul 2000 17:16:17 -0400
From: Chris Faylor <cgf@cygnus.com>
Date: Sat, 1 Jul 2000 17:16:17 -0400
To: cygwin@sourceware.cygnus.com
Subject: Re: arpa/nameser.h
Message-ID: <20000701171617.A18419@cygnus.com>
Reply-To: cygwin@sourceware.cygnus.com
Mail-Followup-To: cygwin@sourceware.cygnus.com
References: <4.3.1.2.20000701160049.00b9fa70@cc03.cc.ec-lyon.fr>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2i
In-Reply-To: <4.3.1.2.20000701160049.00b9fa70@cc03.cc.ec-lyon.fr>; from timothee.besset@ecl1999.ec-lyon.fr on Sat, Jul 01, 2000 at 04:05:03PM -0500

On Sat, Jul 01, 2000 at 04:05:03PM -0500, Timothee Besset wrote:
>I'm trying to port a nice IRC client to cygwin, originally written on
>FreeBSD, works fine on every unixes I've tried (FreeBSD, linux, IRIX
>and solaris).
>
>But on cygwin it doesn't find the arpa/nameser.h header.  Is there a
>reason why this one is missing?  Is it replaced by another one?  What
>should I do to work around the problem?
>
>I found this thread in the archive:
>http://sourceware.cygnus.com/ml/cygwin/2000-05/msg00676.html but it
>doesn't have any follow ups..

Most of the time when someone says "Why isn't this header available?"
the answer is pretty simple.  It just isn't there because no one has
contributed it.

The standard method for determining if another header has the needed
declarations would be to use "grep" to search for the declarations that
you are missing.

cgf

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12866-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sat Jul 01 21:18:35 2000
Return-Path: <cygwin-return-12866-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 25800 invoked by alias); 1 Jul 2000 21:18:35 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 25771 invoked from network); 1 Jul 2000 21:18:30 -0000
Received: from runyon.cygnus.com (HELO cygnus.com) (205.180.230.5)
  by sourceware.cygnus.com with SMTP; 1 Jul 2000 21:18:30 -0000
Received: from rtl.cygnus.com (loony.cygnus.com [205.180.230.181])
	by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id OAA19018
	for <cygwin@sourceware.cygnus.com>; Sat, 1 Jul 2000 14:18:29 -0700 (PDT)
Received: (from cgf@localhost)
	by rtl.cygnus.com (8.9.3/8.8.7) id RAA18484
	for cygwin@sourceware.cygnus.com; Sat, 1 Jul 2000 17:18:11 -0400
From: Chris Faylor <cgf@cygnus.com>
Date: Sat, 1 Jul 2000 17:18:11 -0400
To: cygwin@sourceware.cygnus.com
Subject: [ADMIN] cygwin@sourceware is now stripping html text
Message-ID: <20000701171811.A18475@cygnus.com>
Reply-To: cygwin@sourceware.cygnus.com
Mail-Followup-To: cygwin@sourceware.cygnus.com
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2i

I've finally taken the step of stripping html/text attachments from any
email sent to this mailing list.

Hopefully this won't mean that we'll now be seeing a bunch of blank email
messages here.

cgf

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12867-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sat Jul 01 21:22:10 2000
Return-Path: <cygwin-return-12867-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 27332 invoked by alias); 1 Jul 2000 21:22:09 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 27304 invoked from network); 1 Jul 2000 21:22:04 -0000
Received: from pallas.veritas.com (204.177.156.25)
  by sourceware.cygnus.com with SMTP; 1 Jul 2000 21:22:04 -0000
Received: from megami.veritas.com (megami.veritas.com [192.203.46.101])
	by pallas.veritas.com (8.9.1a/8.9.1) with SMTP id OAA14779
	for <cygwin@sourceware.cygnus.com>; Sat, 1 Jul 2000 14:26:55 -0700 (PDT)
Received: from veritas.com([166.98.15.90]) (1148 bytes) by megami.veritas.com
	via sendmail with P:esmtp/R:smart_host/T:smtp
	(sender: <rmcgowan@veritas.com>) 
	id <m138UiB-00006bC@megami.veritas.com>
	for <cygwin@sourceware.cygnus.com>; Sat, 1 Jul 2000 14:22:03 -0700 (PDT)
	(Smail-3.2.0.101 1997-Dec-17 #4 built 1999-Aug-24)
Message-ID: <395E613F.B20AA3D3@veritas.com>
Date: Sat, 01 Jul 2000 14:23:11 -0700
From: Bob McGowan <rmcgowan@veritas.com>
Organization: VERITAS Software
X-Mailer: Mozilla 4.73 [en] (WinNT; U)
X-Accept-Language: en
MIME-Version: 1.0
To: Cygwin <cygwin@sourceware.cygnus.com>
Subject: Win2000 mount points and Cygwin
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Transfer-Encoding: 7bit

Windows 2000 has introduced the idea of a "mount point" to handle large
numbers of disk partitions (beyond the number handled by the alphabet). 
>From a command prompt, the DIR command shows these items as <JUNCTION>
while Explorer shows a disk icon rather than a folder.

Problem is that Cygwin (I'm using the CD v. 1.0, no updates) does not
recognize this new thing.  I have not seen any discussion of this
Windows feature in the list yet.  Is this a known issue, maybe even
fixed in a recent snapshot?

Thanks,

-- 
Bob McGowan
Staff Software Quality Engineer
VERITAS Software
rmcgowan@veritas.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12868-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sat Jul 01 21:29:55 2000
Return-Path: <cygwin-return-12868-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 29411 invoked by alias); 1 Jul 2000 21:29:55 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 29373 invoked from network); 1 Jul 2000 21:29:54 -0000
Received: from pallas.veritas.com (204.177.156.25)
  by sourceware.cygnus.com with SMTP; 1 Jul 2000 21:29:54 -0000
Received: from megami.veritas.com (megami.veritas.com [192.203.46.101])
	by pallas.veritas.com (8.9.1a/8.9.1) with SMTP id OAA14951
	for <cygwin@sourceware.cygnus.com>; Sat, 1 Jul 2000 14:34:45 -0700 (PDT)
Received: from veritas.com([166.98.15.90]) (1627 bytes) by megami.veritas.com
	via sendmail with P:esmtp/R:smart_host/T:smtp
	(sender: <rmcgowan@veritas.com>) 
	id <m138Upl-00006dC@megami.veritas.com>
	for <cygwin@sourceware.cygnus.com>; Sat, 1 Jul 2000 14:29:53 -0700 (PDT)
	(Smail-3.2.0.101 1997-Dec-17 #4 built 1999-Aug-24)
Message-ID: <395E6315.559713DD@veritas.com>
Date: Sat, 01 Jul 2000 14:31:01 -0700
From: Bob McGowan <rmcgowan@veritas.com>
Organization: VERITAS Software
X-Mailer: Mozilla 4.73 [en] (WinNT; U)
X-Accept-Language: en
MIME-Version: 1.0
To: Cygwin <cygwin@sourceware.cygnus.com>
Subject: Re: Win2000 mount points and Cygwin
References: <395E613F.B20AA3D3@veritas.com>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Transfer-Encoding: 7bit

Scratch that.  I'm not sure what I was looking at a minute ago, but
whatever it was ain't happening now.  Everything is as would be
expected.

My apologies for the misleading post.

Bob McGowan wrote:
> 
> Windows 2000 has introduced the idea of a "mount point" to handle large
> numbers of disk partitions (beyond the number handled by the alphabet).
> >From a command prompt, the DIR command shows these items as <JUNCTION>
> while Explorer shows a disk icon rather than a folder.
> 
> Problem is that Cygwin (I'm using the CD v. 1.0, no updates) does not
> recognize this new thing.  I have not seen any discussion of this
> Windows feature in the list yet.  Is this a known issue, maybe even
> fixed in a recent snapshot?
> 
> Thanks,
> 
> --
> Bob McGowan
> Staff Software Quality Engineer
> VERITAS Software
> rmcgowan@veritas.com
> 
> --
> Want to unsubscribe from this list?
> Send a message to cygwin-unsubscribe@sourceware.cygnus.com

-- 
Bob McGowan
Staff Software Quality Engineer
VERITAS Software
rmcgowan@veritas.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12869-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sat Jul 01 21:55:27 2000
Return-Path: <cygwin-return-12869-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 7367 invoked by alias); 1 Jul 2000 21:55:27 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 7347 invoked from network); 1 Jul 2000 21:55:27 -0000
Received: from unknown (HELO smtp3.ev1.net) (207.218.192.47)
  by sourceware.cygnus.com with SMTP; 1 Jul 2000 21:55:27 -0000
Received: from ttimo.ecl1999.ec-lyon.fr [207.218.236.114] by smtp3.ev1.net with ESMTP
  (SMTPD32-5.05) id A9111ADA007E; Sat, 01 Jul 2000 16:56:33 -0500
Message-Id: <4.3.1.2.20000701164844.00bac4d0@cc03.cc.ec-lyon.fr>
X-Sender: besset@cc03.cc.ec-lyon.fr
X-Mailer: QUALCOMM Windows Eudora Version 4.3.1
Date: Sat, 01 Jul 2000 16:52:11 -0500
To: cygwin@sourceware.cygnus.com
From: Timothee Besset <timothee.besset@ecl1999.ec-lyon.fr>
Subject: Re: arpa/nameser.h
In-Reply-To: <20000701171617.A18419@cygnus.com>
References: <4.3.1.2.20000701160049.00b9fa70@cc03.cc.ec-lyon.fr>
 <4.3.1.2.20000701160049.00b9fa70@cc03.cc.ec-lyon.fr>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"; format=flowed

At 05:16 PM 7/1/00 -0400, you wrote:

>Most of the time when someone says "Why isn't this header available?"
>the answer is pretty simple.  It just isn't there because no one has
>contributed it.

I understand that .. I whish I had the skills and the time it takes to 
write that kind of headers. But I don't want to step into the nightmare of 
building cygwin from CVS .. I have enough trouble building my own apps 
without messing with the core of the system.

>The standard method for determining if another header has the needed
>declarations would be to use "grep" to search for the declarations that
>you are missing.

TTimo


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12870-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sun Jul 02 00:23:42 2000
Return-Path: <cygwin-return-12870-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 28582 invoked by alias); 2 Jul 2000 00:23:42 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 28561 invoked from network); 2 Jul 2000 00:23:41 -0000
Received: from pop3.cinetic.de (HELO smtp.web.de) (194.45.170.160)
  by sourceware.cygnus.com with SMTP; 2 Jul 2000 00:23:41 -0000
Received: from desktop by smtp.web.de with smtp
	(freemail 4.0.1 #1555) id m138XXt-003yBzC; Sun, 2 Jul 2000 02:23 +0200
From: =?iso-8859-1?Q?Boris_Sch=E4ling?= <boriss@web.de>
To: <cygwin@sourceware.cygnus.com>
Subject: RE: dead end: http://sourceware.cygnus.com/cygwin/snapshots/
Date: Sun, 2 Jul 2000 02:23:47 +0200
Message-ID: <LOBBKDBPKEGJJFKNFHKBKEKNDEAA.boriss@web.de>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
Importance: Normal
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200
In-Reply-To: <4.3.1.2.20000630203721.01d838e8@pop.ma.ultranet.com>

I think my last message wasn't clear enough. Here again a short description
of the problem with the dead links.

> -----Original Message-----
> From: Larry Hall (RFK Partners, Inc) [mailto:lhall@rfk.com]
> Sent: Saturday, July 01, 2000 2:38 AM
> To: Boris Schäling
> Subject: RE: dead end: http://sourceware.cygnus.com/cygwin/snapshots/
>
>
> I see what you mean.  Looks like some scripts have gone awry somewhere...
>
> Larry
>
>
> At 08:28 PM 6/30/2000, you wrote:
> >Hehe, I don't want to download the source files I want to browse the
files
> >online! I did this some weeks ago and downloaded some files. As far as I
> >remember I surfed to http://sourceware.cygnus.com/cygwin/snapshots/ and
> >clicked on one of the links called "list" on the right side of the page.
> >Then I could browse the code online and could download only the files I
> >needed. But these links to browse the code online don't work anymore (404
> >error)?
> >
> >Boris
> [...]


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12871-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sun Jul 02 00:45:52 2000
Return-Path: <cygwin-return-12871-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 32595 invoked by alias); 2 Jul 2000 00:45:51 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 32568 invoked from network); 2 Jul 2000 00:45:50 -0000
Received: from runyon.cygnus.com (HELO cygnus.com) (205.180.230.5)
  by sourceware.cygnus.com with SMTP; 2 Jul 2000 00:45:50 -0000
Received: from rtl.cygnus.com (loony.cygnus.com [205.180.230.181])
	by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id RAA24157
	for <cygwin@sourceware.cygnus.com>; Sat, 1 Jul 2000 17:45:49 -0700 (PDT)
Received: (from cgf@localhost)
	by rtl.cygnus.com (8.9.3/8.8.7) id UAA00910
	for cygwin@sourceware.cygnus.com; Sat, 1 Jul 2000 20:45:43 -0400
From: Chris Faylor <cgf@cygnus.com>
Date: Sat, 1 Jul 2000 20:45:43 -0400
To: cygwin@sourceware.cygnus.com
Subject: Re: dead end: http://sourceware.cygnus.com/cygwin/snapshots/
Message-ID: <20000701204543.B878@cygnus.com>
Reply-To: cygwin@sourceware.cygnus.com
Mail-Followup-To: cygwin@sourceware.cygnus.com
References: <4.3.1.2.20000630203721.01d838e8@pop.ma.ultranet.com> <LOBBKDBPKEGJJFKNFHKBKEKNDEAA.boriss@web.de>
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
User-Agent: Mutt/1.2i
In-Reply-To: <LOBBKDBPKEGJJFKNFHKBKEKNDEAA.boriss@web.de>; from boriss@web.de on Sun, Jul 02, 2000 at 02:23:47AM +0200

On Sun, Jul 02, 2000 at 02:23:47AM +0200, Boris Schäling wrote:
>>>I don't want to download the source files I want to browse the files
>>>online! ...  But these links to browse the code online don't work
>>>anymore (404 error)?

We have recently switched to using .bz2 tar files and the web
server hadn't caught up with the change.

This should now be fixed.  Thanks for reporting the problem.

cgf

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12872-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sun Jul 02 01:01:49 2000
Return-Path: <cygwin-return-12872-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 5044 invoked by alias); 2 Jul 2000 01:01:49 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 5021 invoked from network); 2 Jul 2000 01:01:47 -0000
Received: from taxismtp2.alchemy.net (HELO taxismtp2.alchemyfx.com) (209.132.220.152)
  by sourceware.cygnus.com with SMTP; 2 Jul 2000 01:01:47 -0000
Received: from homepc (PPPa61-ResaleFremont2-5R7275.saturn.bbn.com [4.16.191.218])
	by taxismtp2.alchemyfx.com (8.9.3/8.9.3) with ESMTP id RAA20718;
	Sat, 1 Jul 2000 17:53:37 -0700
Message-ID: <000301bfe3c2$535e1ae0$dabf1004@homepc.freedsl.com>
Reply-To: "Dave Arnold" <avr_fan@mailandnews.com>
From: "Dave Arnold" <avr_fan@nettaxi.com>
To: <cygwin@sourceware.cygnus.com>
Cc: "mail and news" <avr_fan@mailandnews.com>
Subject: looking for good hex dump utility...
Date: Sat, 1 Jul 2000 18:10:31 -0700
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3110.5
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3

hi,

can anyone recommend a good, simple hex dump utility that's
available with very portable source code in c/c++ or java which I can
build and use on any of the variety of GNU supported platforms?

I just want something that I can take with me from one computer
to the next as needed without having to find one for each platform
as I go.

Just would like be able to dump file contents and see hex and ascii
values line by line 16bytes at a time with byte address in hex next
to each line.

thanks,
/dAVe



--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12873-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sun Jul 02 01:35:09 2000
Return-Path: <cygwin-return-12873-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 10548 invoked by alias); 2 Jul 2000 01:35:08 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 10527 invoked from network); 2 Jul 2000 01:35:08 -0000
Received: from granger.mail.mindspring.net (207.69.200.148)
  by sourceware.cygnus.com with SMTP; 2 Jul 2000 01:35:08 -0000
Received: from TIMYX18EWDT6RQ (user-38ldm8f.dialup.mindspring.com [209.86.217.15])
	by granger.mail.mindspring.net (8.9.3/8.8.5) with SMTP id VAA24497;
	Sat, 1 Jul 2000 21:35:04 -0400 (EDT)
Message-ID: <002201bfe3c6$226b9990$0100000a@TIMYX18EWDT6RQ>
From: "Tim Prince" <tprince@computer.org>
To: "Dave Arnold" <avr_fan@mailandnews.com>, <cygwin@sourceware.cygnus.com>
Cc: "mail and news" <avr_fan@mailandnews.com>
References: <000301bfe3c2$535e1ae0$dabf1004@homepc.freedsl.com>
Subject: Re: looking for good hex dump utility...
Date: Sat, 1 Jul 2000 18:37:49 -0700
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.00.2919.5600
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.5600

If od doesn't match your description, it might help if you would
clarify.

Tim Prince
----- Original Message -----
From: "Dave Arnold" <avr_fan@nettaxi.com>
To: <cygwin@sourceware.cygnus.com>
Cc: "mail and news" <avr_fan@mailandnews.com>
Sent: Saturday, July 01, 2000 6:10 PM
Subject: looking for good hex dump utility...


> hi,
>
> can anyone recommend a good, simple hex dump utility that's
> available with very portable source code in c/c++ or java which I can
> build and use on any of the variety of GNU supported platforms?
>
> I just want something that I can take with me from one computer
> to the next as needed without having to find one for each platform
> as I go.
>
> Just would like be able to dump file contents and see hex and ascii
> values line by line 16bytes at a time with byte address in hex next
> to each line.
>
> thanks,
> /dAVe
>
>



--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12874-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sun Jul 02 02:05:45 2000
Return-Path: <cygwin-return-12874-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 18248 invoked by alias); 2 Jul 2000 02:05:45 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 18225 invoked from network); 2 Jul 2000 02:05:44 -0000
Received: from taxismtp2.alchemy.net (HELO taxismtp2.alchemyfx.com) (209.132.220.152)
  by sourceware.cygnus.com with SMTP; 2 Jul 2000 02:05:44 -0000
Received: from homepc (PPPa61-ResaleFremont2-5R7275.saturn.bbn.com [4.16.191.218])
	by taxismtp2.alchemyfx.com (8.9.3/8.9.3) with ESMTP id SAA21290;
	Sat, 1 Jul 2000 18:57:55 -0700
Message-ID: <004601bfe3cb$4f9e3da0$dabf1004@homepc.freedsl.com>
Reply-To: "Dave Arnold" <avr_fan@mailandnews.com>
From: "Dave Arnold" <avr_fan@nettaxi.com>
To: "Tim Prince" <tprince@computer.org>, <cygwin@sourceware.cygnus.com>
Subject: Re: looking for good hex dump utility...
Date: Sat, 1 Jul 2000 19:14:51 -0700
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3110.5
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3

hi Tim,

od seems to do the job but if I want to just see numbers 0-9 and letters a-z
in the ascii output, how
do I tell od to do that?  by default od outputs 3 letter names for non
character ascii values like
del, nul, esc...

For what I'm doing I only need to see the ascii values for letters and
numbers and otherwise just
a period '.'  for everything else in the ascii output, but the hexoutput I'd
like to see for everything.

Is there a way to do this?  I could probably edit the source code and change
the ascii output
part to do this right?

so far I'm using od like this:

> od -txa -w16 -Ax  <file to dump>

/dAVe



-----Original Message-----
From: Tim Prince <tprince@computer.org>
To: Dave Arnold <avr_fan@mailandnews.com>; cygwin@sourceware.cygnus.com
<cygwin@sourceware.cygnus.com>
Cc: mail and news <avr_fan@mailandnews.com>
Date: Saturday, July 01, 2000 6:35 PM
Subject: Re: looking for good hex dump utility...


>If od doesn't match your description, it might help if you would
>clarify.
>
>Tim Prince
>----- Original Message -----
>From: "Dave Arnold" <avr_fan@nettaxi.com>
>To: <cygwin@sourceware.cygnus.com>
>Cc: "mail and news" <avr_fan@mailandnews.com>
>Sent: Saturday, July 01, 2000 6:10 PM
>Subject: looking for good hex dump utility...
>
>
>> hi,
>>
>> can anyone recommend a good, simple hex dump utility that's
>> available with very portable source code in c/c++ or java which I can
>> build and use on any of the variety of GNU supported platforms?
>>
>> I just want something that I can take with me from one computer
>> to the next as needed without having to find one for each platform
>> as I go.
>>
>> Just would like be able to dump file contents and see hex and ascii
>> values line by line 16bytes at a time with byte address in hex next
>> to each line.
>>
>> thanks,
>> /dAVe
>>
>>
>
>
>
>--
>Want to unsubscribe from this list?
>Send a message to cygwin-unsubscribe@sourceware.cygnus.com
>


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12875-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sun Jul 02 02:35:43 2000
Return-Path: <cygwin-return-12875-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 26017 invoked by alias); 2 Jul 2000 02:35:43 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 25946 invoked from network); 2 Jul 2000 02:35:41 -0000
Received: from taxismtp2.alchemy.net (HELO taxismtp2.alchemyfx.com) (209.132.220.152)
  by sourceware.cygnus.com with SMTP; 2 Jul 2000 02:35:41 -0000
Received: from homepc (PPPa61-ResaleFremont2-5R7275.saturn.bbn.com [4.16.191.218])
	by taxismtp2.alchemyfx.com (8.9.3/8.9.3) with ESMTP id TAA21659;
	Sat, 1 Jul 2000 19:27:55 -0700
Message-ID: <004d01bfe3cf$8092c120$dabf1004@homepc.freedsl.com>
Reply-To: "Dave Arnold" <avr_fan@mailandnews.com>
From: "Dave Arnold" <avr_fan@nettaxi.com>
To: "Tim Prince" <tprince@computer.org>, <cygwin@sourceware.cygnus.com>
Subject: OD outputs the hex from right to left?...hex dump utility...
Date: Sat, 1 Jul 2000 19:44:51 -0700
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3110.5
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3

hi Tim,

I just realized that the od dump utility is dumping the hex values
from right to left and then dumping the ascii values from left to right.

This makes it very hard to read.  Is there a flag or option to make the
output of ascii and hex columns to be in the same order?

here's a sample output.

      000000 00000009 34333231 bf003635 00000078
              ht nul nul nul   1   2   3   4   5   6 nul   ?   x nul nul nul
      000010 454c4f53 4f525443 5343494e 0000ea00
               S   O   L   E   C   T   R   O   N   I   C   S nul   j nul nul


I like the output to appear like so:

      000010 534f4c45 4354524f 4e494353 00ea0000
               S   O   L   E   C   T   R   O   N   I   C   S nul   j nul nul

or even better like this:(all on one line, only letters and number seen on
ascii view and a '.' for everything else)
(also all on one line is much more readable)

      000010       000010 534f4c45 4354524f 4e494353 00ea0000
SOLECTRONICS.J..

Any help or suggestions on this would be very welcomed.

/dAVe


-----Original Message-----
From: Tim Prince <tprince@computer.org>
To: Dave Arnold <avr_fan@mailandnews.com>; cygwin@sourceware.cygnus.com
<cygwin@sourceware.cygnus.com>
Cc: mail and news <avr_fan@mailandnews.com>
Date: Saturday, July 01, 2000 6:35 PM
Subject: Re: looking for good hex dump utility...


>If od doesn't match your description, it might help if you would
>clarify.
>
>Tim Prince
>----- Original Message -----
>From: "Dave Arnold" <avr_fan@nettaxi.com>
>To: <cygwin@sourceware.cygnus.com>
>Cc: "mail and news" <avr_fan@mailandnews.com>
>Sent: Saturday, July 01, 2000 6:10 PM
>Subject: looking for good hex dump utility...
>
>
>> hi,
>>
>> can anyone recommend a good, simple hex dump utility that's
>> available with very portable source code in c/c++ or java which I can
>> build and use on any of the variety of GNU supported platforms?
>>
>> I just want something that I can take with me from one computer
>> to the next as needed without having to find one for each platform
>> as I go.
>>
>> Just would like be able to dump file contents and see hex and ascii
>> values line by line 16bytes at a time with byte address in hex next
>> to each line.
>>
>> thanks,
>> /dAVe
>>
>>
>
>
>
>--
>Want to unsubscribe from this list?
>Send a message to cygwin-unsubscribe@sourceware.cygnus.com
>


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12876-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sun Jul 02 02:45:29 2000
Return-Path: <cygwin-return-12876-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 28083 invoked by alias); 2 Jul 2000 02:45:29 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 28061 invoked from network); 2 Jul 2000 02:45:27 -0000
Received: from delorie.com (207.22.48.162)
  by sourceware.cygnus.com with SMTP; 2 Jul 2000 02:45:27 -0000
Received: from envy.delorie.com (envy.delorie.com [207.22.48.171])
	by delorie.com (8.9.1/8.9.1) with ESMTP id WAA07995;
	Sat, 1 Jul 2000 22:45:22 -0400
Received: (from dj@localhost)
	by envy.delorie.com (8.9.3/8.8.8) id WAA14181;
	Sat, 1 Jul 2000 22:45:20 -0400
Date: Sat, 1 Jul 2000 22:45:20 -0400
Message-Id: <200007020245.WAA14181@envy.delorie.com>
From: DJ Delorie <dj@delorie.com>
To: asharji@plg2.math.uwaterloo.ca
CC: cygwin@sourceware.cygnus.com
In-reply-to: <Pine.SOL.3.96.1000630214754.5827A-100000@plg2.math.uwaterloo.ca>
	(asharji@plg2.math.uwaterloo.ca)
Subject: Re: user defined malloc
References:  <Pine.SOL.3.96.1000630214754.5827A-100000@plg2.math.uwaterloo.ca>


> My question is do I have to also override the _malloc_r routine, and
> if so, could someone provide some information or a link on what is
> required?  It appears to be a reentrant version of malloc.

Yup, newlib is heavy into reentrancy.  However, _malloc_r isn't
exported by cygwin1.dll and cygwin doesn't expect your program to
replace it.  I'm not sure how much of a "bug" this is, but I'm open
for suggestions.  Might want to ask on the newlib list also, I'm sure
they have really good reasons to call the reentrant malloc.

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

From cygwin-return-12877-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com Sun Jul 02 04:17:28 2000
Return-Path: <cygwin-return-12877-listarch-cygwin=sourceware.cygnus.com@sourceware.cygnus.com>
Delivered-To: listarch-cygwin@sourceware.cygnus.com
Received: (qmail 29612 invoked by alias); 2 Jul 2000 04:17:27 -0000
Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
Precedence: bulk
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Received: (qmail 29591 invoked from network); 2 Jul 2000 04:17:25 -0000
Received: from mail1.sunflower.com (root@24.124.0.137)
  by sourceware.cygnus.com with SMTP; 2 Jul 2000 04:17:25 -0000
Received: from Amanda (dv193s32.lawrence.ks.us [24.124.32.193])
	by mail1.sunflower.com (8.9.3/8.9.3) with ESMTP id XAA24247;
	Sat, 1 Jul 2000 23:17:22 -0500
Message-Id: <200007020417.XAA24247@mail1.sunflower.com>
From: "Doug Wyatt" <dwyatt@sunflower.com>
To: "Dave Arnold" <avr_fan@nettaxi.com>
Date: Sat, 1 Jul 2000 23:17:21 -0500
MIME-Version: 1.0
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Subject: Re: OD outputs the hex from right to left?...hex dump utility...
Reply-to: dwyatt@sunflower.com
CC: <cygwin@sourceware.cygnus.com>
Priority: normal
In-reply-to: <004d01bfe3cf$8092c120$dabf1004@homepc.freedsl.com>
X-mailer: Pegasus Mail for Win32 (v3.12b)

Hi,

I would suggest either of the following:

1.  your requirements are so narrow and specific you could probably
     write a tool to do what you want, in C or Perl, in less than an hour.

2.  use a big-endian computer, so the bytes are in the order you want
     them (e.g. MC 68xxxx, or  the pending IA-64).

Regards,
Doug Wyatt



> hi Tim,
> 
> I just realized that the od dump utility is dumping the hex values
> from right to left and then dumping the ascii values from left to right.
> 
> This makes it very hard to read.  Is there a flag or option to make the
> output of ascii and hex columns to be in the same order?
> 
> here's a sample output.
> 
>       000000 00000009 34333231 bf003635 00000078
>               ht nul nul nul   1   2   3   4   5   6 nul   ?   x nul nul nul
>       000010 454c4f53 4f525443 5343494e 0000ea00
>                S   O   L   E   C   T   R   O   N   I   C   S nul   j nul nul
> 
> 
> I like the output to appear like so:
> 
>       000010 534f4c45 4354524f 4e494353 00ea0000
>                S   O   L   E   C   T   R   O   N   I   C   S nul   j nul nul
> 
> or even better like this:(all on one line, only letters and number seen on
> ascii view and a '.' for everything else)
> (also all on one line is much more readable)
> 
>       000010       000010 534f4c45 4354524f 4e494353 00ea0000
> SOLECTRONICS.J..
> 
> Any help or suggestions on this would be very welcomed.
> 
> /dAVe
> 
> 
> -----Original Message-----
> From: Tim Prince <tprince@computer.org>
> To: Dave Arnold <avr_fan@mailandnews.com>; cygwin@sourceware.cygnus.com
> <cygwin@sourceware.cygnus.com>
> Cc: mail and news <avr_fan@mailandnews.com>
> Date: Saturday, July 01, 2000 6:35 PM
> Subject: Re: looking for good hex dump utility...
> 
> 
> >If od doesn't match your description, it might help if you would
> >clarify.
> >
> >Tim Prince
> >----- Original Message -----
> >From: "Dave Arnold" <avr_fan@nettaxi.com>
> >To: <cygwin@sourceware.cygnus.com>
> >Cc: "mail and news" <avr_fan@mailandnews.com>
> >Sent: Saturday, July 01, 2000 6:10 PM
> >Subject: looking for good hex dump utility...
> >
> >
> >> hi,
> >>
> >> can anyone recommend a good, simple hex dump utility that's
> >> available with very portable source code in c/c++ or java which I can
> >> build and use on any of the variety of GNU supported platforms?
> >>
> >> I just want something that I can take with me from one computer
> >> to the next as needed without having to find one for each platform
> >> as I go.
> >>
> >> Just would like be able to dump file contents and see hex and ascii
> >> values line by line 16bytes at a time with byte address in hex next
> >> to each line.
> >>
> >> thanks,
> >> /dAVe
> >>
> >>
> >
> >
> >
> >--
> >Want to unsubscribe from this list?
> >Send a message to cygwin-unsubscribe@sourceware.cygnus.com
> >
> 
> 
> --
> Want to unsubscribe from this list?
> Send a message to cygwin-unsubscribe@sourceware.cygnus.com



--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com