public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* problems with make...
@ 2001-07-22  6:17 Dave BT
  0 siblings, 0 replies; 11+ messages in thread
From: Dave BT @ 2001-07-22  6:17 UTC (permalink / raw)
  To: Cygwin

Hi all,

What does: parse error before '4' mean?

Dave G

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: problems with make
@ 2001-08-21  2:05 Schaible, Jörg
  0 siblings, 0 replies; 11+ messages in thread
From: Schaible, Jörg @ 2001-08-21  2:05 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 712 bytes --]

Hi Lee,

>i'm just using what came with cygwin.. whenever i type make.

make comes with Cygwin, but no cc. Cygwin has gcc, you may set the
environment variable CC to gcc

>is it possible the makefile is not compatiable or something? 

what do you mean by "compatible" makefile ? 

>if so is it
>possible to have something make a new one?

this is up to you

Regards,
Jörg

BTW: Please keep discussions at the list and do not sent private mail. It is
very unlikely to have me answering at 3am.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: problems with make
@ 2001-08-20 17:45 netmgmt
  0 siblings, 0 replies; 11+ messages in thread
From: netmgmt @ 2001-08-20 17:45 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1533 bytes --]

You should definately use gcc, perhaps that is what you are using and the g was snipped, however there are many files needed in netinet/ in order to compile several things I have been trying to get working. I think that it is quite possible that you will not be able to compile it without these files. I am not sure that cygwin versions of these files exist, so you may be dead in the water, like me.
Good Luck.
> 
> Hi Lee,
> 
> >___________
> >Lee@SERVER ~/tetrinet
> >$ make
> >cc -O2 -I/usr/include/ncurses -c server.c
> >server.c:12: netinet/in.h: No such file or directory
> >server.c:17: sys/socket.h: No such file or directory
> >make: *** [server.o] Error 1
> >
> >Lee@SERVER ~/tetrinet
> >$
> >________________
> 
> my Cygwin tells me:
> $ cc
> bash: cc: command not found
> 
> So I am wondering what compiler you are trying to run ... it seems to be
> none that is aware of Cygwin paths ;-)
> 
> Regards,
> Jörg
> 
> --
> Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> Bug reporting:         http://cygwin.com/bugs.html
> Documentation:         http://cygwin.com/docs.html
> FAQ:                   http://cygwin.com/faq/


   
-------------------------------------------------
Get personalized e-mail and a web address or your
own free e-mail at http://www.networksolutions.com .





--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: problems with make
@ 2001-08-20 17:11 Schaible, Jörg
  0 siblings, 0 replies; 11+ messages in thread
From: Schaible, Jörg @ 2001-08-20 17:11 UTC (permalink / raw)
  To: cygwin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 681 bytes --]

Hi Lee,

>___________
>Lee@SERVER ~/tetrinet
>$ make
>cc -O2 -I/usr/include/ncurses -c server.c
>server.c:12: netinet/in.h: No such file or directory
>server.c:17: sys/socket.h: No such file or directory
>make: *** [server.o] Error 1
>
>Lee@SERVER ~/tetrinet
>$
>________________

my Cygwin tells me:
$ cc
bash: cc: command not found

So I am wondering what compiler you are trying to run ... it seems to be
none that is aware of Cygwin paths ;-)

Regards,
Jörg

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 11+ messages in thread

* problems with make
@ 2001-08-20 16:15 LPServ
  0 siblings, 0 replies; 11+ messages in thread
From: LPServ @ 2001-08-20 16:15 UTC (permalink / raw)
  To: cygwin

I am having problems with the make program. I've tried various things but to
no luck, and could find nothing of help in the documentation, etc. The
problems aren't with just this program.. but this is one of the ones I
really want to get to compile... so here is the error.

___________
Lee@SERVER ~/tetrinet
$ make
cc -O2 -I/usr/include/ncurses -c server.c
server.c:12: netinet/in.h: No such file or directory
server.c:17: sys/socket.h: No such file or directory
make: *** [server.o] Error 1

Lee@SERVER ~/tetrinet
$
________________

and here is the makefile, if it would be of any use.

____________
CC = cc
CFLAGS = -O2 -I/usr/include/ncurses

OBJS = server.o sockets.o tetrinet.o tetris.o tty.o xwin.o

all: tetrinet tetrinet-server

install: all
 cp -p tetrinet tetrinet-server /usr/games

tetrinet: $(OBJS)
 $(CC) -o $@ $(OBJS) -lncurses

tetrinet-server: server.c sockets.c tetrinet.c tetris.c server.h sockets.h
tetrinet.h tetris.h
 $(CC) $(CFLAGS) -o $@ -DSERVER_ONLY server.c sockets.c tetrinet.c tetris.c

.c.o:
 $(CC) $(CFLAGS) -c $<

server.o: server.c tetrinet.h tetris.h server.h sockets.h
sockets.o: sockets.c sockets.h tetrinet.h
tetrinet.o: tetrinet.c tetrinet.h io.h server.h sockets.h tetris.h
tetris.o: tetris.c tetris.h tetrinet.h io.h sockets.h
tty.o:  tty.c tetrinet.h tetris.h io.h
xwin.o:  xwin.c tetrinet.h tetris.h io.h

tetrinet.h: io.h
_____________

thanks,
lee


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Problems with make
@ 1999-01-31 23:52 Gulyas Laszlo
  0 siblings, 0 replies; 11+ messages in thread
From: Gulyas Laszlo @ 1999-01-31 23:52 UTC (permalink / raw)
  To: 'cygwin'

Hi Everybody,

I am trying to make my program against Swarm simulation libraries under B19, and I get the error message below:

	libtool-swarm: link: `-LC:/Cygnus/B19/H-i386-cygwin32/lib' cannot 	specify a relative directory

Does anybody have any idea what this means? 

Thanks for your time.

Yours,
Gulya

PS: The full transcript of compilation is as follows:

/Users/Gulya/MAML/Sims/TrafficJam/MAML_target$ make it
gcc -c -Wno-import -g -O2 -fno-inline  -I/Swarm-1.3.1/packages/swarm/include main.m
gcc -c -Wno-import -g -O2 -fno-inline  -I/Swarm-1.3.1/packages/swarm/include Traffic_Jam.m
gcc -c -Wno-import -g -O2 -fno-inline  -I/Swarm-1.3.1/packages/swarm/include Car.m
gcc -c -Wno-import -g -O2 -fno-inline  -I/Swarm-1.3.1/packages/swarm/include MAML_Car.m
gcc -c -Wno-import -g -O2 -fno-inline  -I/Swarm-1.3.1/packages/swarm/include MAML_ProbeLibrary.m
/Swarm-1.3.1/packages/swarm/bin/libtool-swarm --mode link gcc -g -O2 -fno-inline -L/Swarm-1.3.1/packages/swarm/lib -Wl,-rpath,/Swarm-1.3.1/packages/swarm/lib -L
/Swarm-1.3.1/packages/BLT/lib -LC:/Cygnus/B19/H-i386-cygwin32/lib  -LC:/Cygnus/B
19/H-i386-cygwin32/lib -L/Swarm-1.3.1/packages/libffi/lib -L/Swarm-1.3.1/package
s/png/lib -L/Swarm-1.3.1/packages/zlib/lib    -o run.exe main.o Traffic_Jam.o Ca
r.o MAML_Car.o MAML_ProbeLibrary.o -lspace -lspace -lanalysis -lsimtools -lsimto
olsgui -ltkobjc -ltclobjc -lactivity -lrandom -lobjectbase -lcollections -ldefob
j -lmisc -lBLT80 -ltk80 -ltcl80  -lpng -lz -lffi -luser32 -lgdi32 -lm -lobjc
libtool-swarm: link: `-LC:/Cygnus/B19/H-i386-cygwin32/lib' cannot specify a rela
tive directory
make: *** [run.exe] Error 1
/Users/Gulya/MAML/Sims/TrafficJam/MAML_target$




-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Problems with make
  1997-07-03  8:43 ` Riccardo D'Altoe'
@ 1997-07-03 16:52   ` Jing-Hsien Chiang
  0 siblings, 0 replies; 11+ messages in thread
From: Jing-Hsien Chiang @ 1997-07-03 16:52 UTC (permalink / raw)
  To: Riccardo D'Altoe'; +Cc: gnu-win32

Riccardo D'Altoe' wrote:
> 
> Where are the gnu make v3.75 sources ?
> Where can i look for these sources ?
> 

There are lots of sites have mirrored to gnu's original 
site, MIT. I suggest you fetch make-3.75.tar.gz (about 
581kb) from the following URL

http://sunsite.doc.ic.ac.uk/pub/gnu/

Jing-Hsien
-- 
Dr. Chiang, Jing-Hsien
Energy & System Engineering Group
Japan NUS Co., Ltd.
Loop-X Bldg., 7F, Kaigan 3-9-15
Minato-ku, Tokyo 108, JAPAN
Phone:81-3-5440-1868
Fax:  81-3-5440-1869
e-mail:jchiang@janus.co.jp
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Problems with make
       [not found] <199706172355.QAA23579@io.nosc.mil>
@ 1997-07-03  8:43 ` Riccardo D'Altoe'
  1997-07-03 16:52   ` Jing-Hsien Chiang
  0 siblings, 1 reply; 11+ messages in thread
From: Riccardo D'Altoe' @ 1997-07-03  8:43 UTC (permalink / raw)
  To: Michael Godfrey, gnu-win32

Michael Godfrey wrote:

> Riccardo Daltoe wrote:
> >
> > I have encountered a problem with 'make' on a system with NT v4.0 e
> > Cygnuus B18.
> > When i have tried to use "make" to compile, i have always obtained
> an
> > error:
> >
> > (unknown) In cygwin_except_handler
> ........



> > Can anynone tell me anything about this problem ?
> >
> > Thanks.
>
> Riccardo, do you have a cygwin.dll older than B18 in your path?
> If so, delete it and things should work.
>
> If not, I have encountered this same problem with make in B18
> and B17.  It appears (to me) that the 'make' binary that comes
> with the Cygnus distribution is broken, but nobody else seems
> to have a problem with it.
>

Yes, i have encountered this problem only under make in B18 and not in
B17!

> I got around the STATUS_ACCESS_VIOLATION problem by getting
> and building gnu make v3.75 with MSVC++ and nmake.
>

Where are the gnu make v3.75 sources ?
Where can i look for these sources ?

Thanks in advance.

--
+----------------------------------------------------------------------+

| D'Altoe' Riccardo                                                    |

+---------------------------------+------------------------------------+

| Politecnico di Torino           | phone:  +39-(0)11-5647072          |

| Dip. Automatica e Informatica   |                                    |

| corso Duca degli Abruzzi, 24    | e-mail: daltoe@athena.polito.it    |

| 10129 Torino                    |                                    |

| ITALY                           | fido  : riccardo daltoe 2:334/203  |

+---------------------------------+------------------------------------+



-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Problems with make
@ 1997-06-17  1:32 Riccardo Daltoe
  0 siblings, 0 replies; 11+ messages in thread
From: Riccardo Daltoe @ 1997-06-17  1:32 UTC (permalink / raw)
  To: gnu-win32

I have encountered a problem with 'make' on a system with NT v4.0 e
Cygnuus B18.
When i have tried to use "make" to compile, i have always obtained an
error:

(unknown) In cygwin_except_handler
(unknown) Exception trapped!
(unknown) exception C0000005 at 1000C981
(unknown) exception: ax 44D8E8 bx 12FB54 cx A90B0 dx 0
(unknown) exception: si 11 di 0 bp 12FB68 sp 12FB44
(unknown) exception is: STATUS_ACCESS_VIOLATION
(unknown) Stack trace:
(unknown) frame 0: sp = 0x12F978, pc = 0x10002A68
(unknown) frame 1: sp = 0x12F994, pc = 0x77F94072
(unknown) frame 2: sp = 0x12F9B8, pc = 0x77F88A53
(unknown) frame 3: sp = 0x12FA44, pc = 0x77F75E82
(unknown) frame 4: sp = 0x12FB68, pc = 0x10001958
(unknown) frame 5: sp = 0x12FF9C, pc = 0x10001ECF
(unknown) frame 6: sp = 0x12FFA8, pc = 0x44C4F0
(unknown) frame 7: sp = 0x12FFB8, pc = 0x401012
(unknown) frame 8: sp = 0x12FFC0, pc = 0x77F1AFC1
(unknown) frame 9: sp = 0x12FFF0, pc = 0x0
(unknown) End of stack trace
(unknown) In cygwin_except_handler
(unknown) Error while dumping state (probably corrupted stack)
make: *** [all] Error 2


Can anynone tell me anything about this problem ?

Thanks.


+----------------------------------------------------------------------+
| D'Altoe' Riccardo                                                    |
+---------------------------------+------------------------------------+
| Politecnico di Torino           | phone:  +39-(0)11-5647072          |
| Dip. Automatica e Informatica   |                                    |
| corso Duca degli Abruzzi, 24    | e-mail: daltoe@athena.polito.it    |
| 10129 Torino                    |                                    |
| ITALY                           | fido  : riccardo daltoe 2:334/203  |
+---------------------------------+------------------------------------+
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Problems with make
@ 1997-06-04 12:20 Michael Godfrey
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Godfrey @ 1997-06-04 12:20 UTC (permalink / raw)
  To: gnu-win32; +Cc: Michael Godfrey

Since no one has responded to my original post, I assume that
I'm the only person encountering problems with make.  Is that
right?

Here it is again, just in case the problem looks familiar to
anyone:

______________________________________________________________________

I have encountered two problems with 'make'.  I'm running NT
v4.0, Cygnus B18.  All mounts are binary, /tmp is in place, I'm
the only user on the system, etc.

The first problem is that the make binary that came with the
B18 distribution outputs the following, no matter what I'm
trying to make:


$ make
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) In
     cygwin_except_handler
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) Exception trapped!
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) exception C0000005
     at 10029ACE
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) exception: ax 241F457
     bx 241E812 cx 45535500 dx 241F457
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) exception: si 241E838
     di 241F0EB bp 241E800 sp 241E7FC
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) exception is:
     STATUS_ACCESS_VIOLATION
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) Stack trace:
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 0: sp =
     0x241E630, pc = 0x1000CEC2
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 1: sp =
     0x241E64C, pc = 0x77F94072
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 2: sp =
     0x241E670, pc = 0x77F88A53
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 3: sp =
     0x241E6FC, pc = 0x77F75E82
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 4: sp =
     0x241E800, pc = 0x40817F
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 5: sp =
     0x241E878, pc = 0x406CD9
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 6: sp =
     0x241F1D4, pc = 0x1000C102
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 7: sp =
     0x241FF94, pc = 0x1000C113
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 8: sp =
     0x241FFA0, pc = 0x416309
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 9: sp =
     0x241FFB0, pc = 0x40103B
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 10: sp =
     0x241FFC0, pc = 0x77F1AFC1
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 11: sp =
     0x241FFF0, pc = 0x0
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) End of stack trace


So, I got and built GNU make v3.75 (using MSVC++ and nmake).  This
version of make has successfully made a variety of good executables,
although sometimes I get the following error when compiling:

     g++: Internal compiler error: program cc1plus got fatal signal 33

After which make stops.  However, the code compiles fine if I issue
the same g++ command interactively (e.g., from the bash command line
instead of from within a Makefile).

Has anyone else encountered these errors?  If so, have you found a
solution or a workaround?  Any help will be greatly appreciated.

Thanks.

-Mike Godfrey

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Problems with make
@ 1997-05-30  0:12 Michael Godfrey
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Godfrey @ 1997-05-30  0:12 UTC (permalink / raw)
  To: gnu-win32; +Cc: Michael Godfrey

I have encountered two problems with 'make'.  I'm running NT
v4.0, Cygnus B18.  All mounts are binary, /tmp is in place, I'm
the only user on the system, etc.

The first problem is that the make binary that came with the
B18 distribution outputs the following, no matter what I'm
trying to make:


$ make
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) In
     cygwin_except_handler
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) Exception trapped!
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) exception C0000005
     at 10029ACE
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) exception: ax 241F457
     bx 241E812 cx 45535500 dx 241F457
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) exception: si 241E838
     di 241F0EB bp 241E800 sp 241E7FC
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) exception is:
     STATUS_ACCESS_VIOLATION
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) Stack trace:
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 0: sp =
     0x241E630, pc = 0x1000CEC2
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 1: sp =
     0x241E64C, pc = 0x77F94072
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 2: sp =
     0x241E670, pc = 0x77F88A53
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 3: sp =
     0x241E6FC, pc = 0x77F75E82
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 4: sp =
     0x241E800, pc = 0x40817F
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 5: sp =
     0x241E878, pc = 0x406CD9
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 6: sp =
     0x241F1D4, pc = 0x1000C102
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 7: sp =
     0x241FF94, pc = 0x1000C113
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 8: sp =
     0x241FFA0, pc = 0x416309
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 9: sp =
     0x241FFB0, pc = 0x40103B
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 10: sp =
     0x241FFC0, pc = 0x77F1AFC1
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) frame 11: sp =
     0x241FFF0, pc = 0x0
(c:\usr\gnuwin32\b18\H-i386-cygwin32\bin\make.exe 3684) End of stack trace


So, I got and built GNU make v3.75 (using MSVC++ and nmake).  This
version of make has successfully made a variety of good executables,
although sometimes I get the following error when compiling:

     g++: Internal compiler error: program cc1plus got fatal signal 33

After which make stops.  However, the code compiles fine if I issue
the same g++ command interactively (e.g., from the bash command line
instead of from within a Makefile).

Has anyone else encountered these errors?  If so, have you found a
solution or a workaround?  Any help will be greatly appreciated.

Thanks.

-Mike Godfrey
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2001-08-21  2:05 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-07-22  6:17 problems with make Dave BT
  -- strict thread matches above, loose matches on Subject: below --
2001-08-21  2:05 Schaible, Jörg
2001-08-20 17:45 netmgmt
2001-08-20 17:11 Schaible, Jörg
2001-08-20 16:15 LPServ
1999-01-31 23:52 Problems " Gulyas Laszlo
     [not found] <199706172355.QAA23579@io.nosc.mil>
1997-07-03  8:43 ` Riccardo D'Altoe'
1997-07-03 16:52   ` Jing-Hsien Chiang
1997-06-17  1:32 Riccardo Daltoe
1997-06-04 12:20 Michael Godfrey
1997-05-30  0:12 Michael Godfrey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).