public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* info - again
@ 1999-04-26  1:53 R. Hickling
  1999-04-26  8:29 ` Mumit Khan
  1999-04-30 18:32 ` R. Hickling
  0 siblings, 2 replies; 16+ messages in thread
From: R. Hickling @ 1999-04-26  1:53 UTC (permalink / raw)
  To: cygwin

I have a 'dir' in '/usr/local/info', and 'info' runs, displaying its
'Top' node.

However, when I do 'm<whatever>' or even just 'h' it says
-------------------------------------
Info: No such file or directory
-------------------------------------
in the minibuffer.  It does the same irrespective of my 'INFOPATH' or
'--directory' (which I set to '/usr/local/info' which is where all my
'.info...' files are).

What else do I need to do?


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

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

* Re: info - again
  1999-04-26  1:53 info - again R. Hickling
@ 1999-04-26  8:29 ` Mumit Khan
  1999-04-26  8:48   ` R. Hickling
  1999-04-30 18:32   ` Mumit Khan
  1999-04-30 18:32 ` R. Hickling
  1 sibling, 2 replies; 16+ messages in thread
From: Mumit Khan @ 1999-04-26  8:29 UTC (permalink / raw)
  To: R. Hickling; +Cc: cygwin

"R. Hickling" <hicklinr@mcd.alcatel.be> writes:
> I have a 'dir' in '/usr/local/info', and 'info' runs, displaying its
> 'Top' node.
> 
> However, when I do 'm<whatever>' or even just 'h' it says
> -------------------------------------
> Info: No such file or directory
> -------------------------------------
> in the minibuffer.  It does the same irrespective of my 'INFOPATH' or
> '--directory' (which I set to '/usr/local/info' which is where all my
> '.info...' files are).
> 
> What else do I need to do?
> 

You may just want to pull down texinfo and build it yourself. It does work
for me, and I'm surprised that it's not working with your setup even with
INFOPATH or --directory option!

The only gotcha in building it, if I remember correctly, is that you may
need to get termcap.h, which was left out of Cygwin b20.1. The termcap
library itself is part of the distribution, so that part is ok.

I'll investigate when I get some time.

Regards,
Mumit


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

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

* Re: info - again
  1999-04-26  8:29 ` Mumit Khan
@ 1999-04-26  8:48   ` R. Hickling
  1999-04-26 10:00     ` Mumit Khan
                       ` (3 more replies)
  1999-04-30 18:32   ` Mumit Khan
  1 sibling, 4 replies; 16+ messages in thread
From: R. Hickling @ 1999-04-26  8:48 UTC (permalink / raw)
  To: Mumit Khan; +Cc: cygwin

> > I have a 'dir' in '/usr/local/info', and 'info' runs, displaying its
> > 'Top' node.
> > However, when I do 'm<whatever>' or even just 'h' it says
> > Info: No such file or directory
> > in the minibuffer.  It does the same irrespective of my 'INFOPATH' or
> > '--directory' (which I set to '/usr/local/info' which is where all my
> > '.info...' files are).
> > What else do I need to do?
> You may just want to pull down texinfo and build it yourself. It does work
> for me, and I'm surprised that it's not working with your setup even with
> INFOPATH or --directory option!
> The only gotcha in building it, if I remember correctly, is that you may
> need to get termcap.h, which was left out of Cygwin b20.1. The termcap
> library itself is part of the distribution, so that part is ok.

'./configure' worked fine.
'make' got past 'util' but failed in 'doc':
------------------------------------------------------------
Making all in doc
../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
info-stnd.texi: No such file or directory
make[2]: *** [info-stnd.info] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive-am] Error 2
------------------------------------------------------------



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

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

* Re: info - again
  1999-04-26  8:48   ` R. Hickling
@ 1999-04-26 10:00     ` Mumit Khan
  1999-04-30 18:32       ` Mumit Khan
  1999-04-26 15:11     ` Kevin Wright
                       ` (2 subsequent siblings)
  3 siblings, 1 reply; 16+ messages in thread
From: Mumit Khan @ 1999-04-26 10:00 UTC (permalink / raw)
  To: R. Hickling; +Cc: cygwin

"R. Hickling" <hicklinr@mcd.alcatel.be> writes:
> 
> './configure' worked fine.
> 'make' got past 'util' but failed in 'doc':
> ------------------------------------------------------------
> Making all in doc
> ../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
> info-stnd.texi: No such file or directory
> make[2]: *** [info-stnd.info] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
> ------------------------------------------------------------

You'll need to do some digging to see what is going wrong. This is what
I did with texinfo-3.12 when I did the initial build (I'm using the
original B20.1 Cygwin1 DLL on an NT 4.0SP3 machine):
  
  $ tar zxvf texinfo-3.12.tar.gz
  $ mkdir texinfo-3.12/BUILD
  $ cd texinfo-3.12/BUILD
  $ ../configure --prefix=/Cygnus/cygwin-b20 \
    --exec-prefix=/Cygnus/cygwin-b20/H-i586-cygwin32 -v i586-cygwin32
  $ make CC="gcc -I/usr/local/include"

my /usr/local/include contains all sorts of stuff like termcap, ncurses,
zlib, etc. I believe I have most of what Andy Piper distributes.

This is all from memory, but it's simple enough that it's a safe bet that
I haven't forgotten too much.

In your case, why don't you just tell make to ignore errors and go
forward? ie.,

  $ make -i

and see what happens?

Regards,
Mumit


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

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

* RE: info - again
  1999-04-26  8:48   ` R. Hickling
  1999-04-26 10:00     ` Mumit Khan
@ 1999-04-26 15:11     ` Kevin Wright
  1999-04-30  6:14       ` Glenn Spell
  1999-04-30 18:32       ` Kevin Wright
  1999-04-27  3:06     ` David Starks-Browning
  1999-04-30 18:32     ` R. Hickling
  3 siblings, 2 replies; 16+ messages in thread
From: Kevin Wright @ 1999-04-26 15:11 UTC (permalink / raw)
  To: 'R. Hickling', 'Mumit Khan'; +Cc: cygwin

"R. Hickling" <hicklinr@mcd.alcatel.be> writes:

> './configure' worked fine.
> 'make' got past 'util' but failed in 'doc':
> ------------------------------------------------------------
> Making all in doc
> ../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
> info-stnd.texi: No such file or directory
> make[2]: *** [info-stnd.info] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
> ------------------------------------------------------------

I remember getting errors like that and I managed to 
get to work by converting the .texi files from dos to unix 
using trans. I can't remember where I got trans.exe but when
I run it, it returns this info: 
	trans.exe 7.8 - (c) Kai Uwe Rommel - Feb 01 1994

Hope this helps,

Kevin

> -----Original Message-----
> From: cygwin-owner@sourceware.cygnus.com
> [ mailto:cygwin-owner@sourceware.cygnus.com]On Behalf Of R. Hickling
> Sent: Monday, April 26, 1999 8:49 AM
> To: Mumit Khan
> Cc: cygwin@sourceware.cygnus.com
> Subject: Re: info - again
> 
> 
> > > I have a 'dir' in '/usr/local/info', and 'info' runs, 
> displaying its
> > > 'Top' node.
> > > However, when I do 'm<whatever>' or even just 'h' it says
> > > Info: No such file or directory
> > > in the minibuffer.  It does the same irrespective of my 
> 'INFOPATH' or
> > > '--directory' (which I set to '/usr/local/info' which is 
> where all my
> > > '.info...' files are).
> > > What else do I need to do?
> > You may just want to pull down texinfo and build it 
> yourself. It does work
> > for me, and I'm surprised that it's not working with your 
> setup even with
> > INFOPATH or --directory option!
> > The only gotcha in building it, if I remember correctly, is 
> that you may
> > need to get termcap.h, which was left out of Cygwin b20.1. 
> The termcap
> > library itself is part of the distribution, so that part is ok.
> 
> './configure' worked fine.
> 'make' got past 'util' but failed in 'doc':
> ------------------------------------------------------------
> Making all in doc
> ../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
> info-stnd.texi: No such file or directory
> make[2]: *** [info-stnd.info] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
> ------------------------------------------------------------
> 
> 
> 
> --
> 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

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

* Re: info - again
  1999-04-26  8:48   ` R. Hickling
  1999-04-26 10:00     ` Mumit Khan
  1999-04-26 15:11     ` Kevin Wright
@ 1999-04-27  3:06     ` David Starks-Browning
  1999-04-30 18:32       ` David Starks-Browning
  1999-04-30 18:32     ` R. Hickling
  3 siblings, 1 reply; 16+ messages in thread
From: David Starks-Browning @ 1999-04-27  3:06 UTC (permalink / raw)
  To: R. Hickling; +Cc: cygwin

On Monday 26 Apr 99, R. Hickling writes:
> 
> './configure' worked fine.
> 'make' got past 'util' but failed in 'doc':
> ------------------------------------------------------------
> Making all in doc
> ../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
> info-stnd.texi: No such file or directory
> make[2]: *** [info-stnd.info] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
> ------------------------------------------------------------

I don't know if this is the cause of your specific problem, but I
found it necessary to do two extra things before I could build texinfo
successfully:

1. Delete or rename the "makinfo.exe" supplied with cygwin.  This
   is written as a no-op.

2. Replace cygwin's "install.exe" with one that works on *.exe
   files.  I found one at

< ftp://ftp.franken.de/pub/win32/develop/gnuwin32/cygwin/porters/Humblet_Pierre_A/install-cygwin-b20-sh >

Regards,
David

 -------------------------------------------------------------------
  David Starks-Browning                  | starksb@ebi.ac.uk
  EMBL Outstation --                     |
  The European Bioinformatics Institute  |
  Wellcome Trust Genome Campus           | tel: +44 (1223) 494 616
  Hinxton, Cambridge, CB10 1SD, UK       | fax: +44 (1223) 494 468
 -------------------------------------------------------------------


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

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

* Re: info - again
  1999-04-26 15:11     ` Kevin Wright
@ 1999-04-30  6:14       ` Glenn Spell
  1999-04-30 18:32         ` Glenn Spell
  1999-04-30 18:32       ` Kevin Wright
  1 sibling, 1 reply; 16+ messages in thread
From: Glenn Spell @ 1999-04-30  6:14 UTC (permalink / raw)
  To: cygwin

Kevin Wright wrote:
> 
> I remember getting errors like that and I managed to 
> get to work by converting the .texi files from dos to unix 
> using trans. I can't remember where I got trans.exe but when
> I run it, it returns this info: 
> 	trans.exe 7.8 - (c) Kai Uwe Rommel - Feb 01 1994

I found that when converting multiple files, trans would crash.

A precompiled "flip" with docs can be found at
< http://www.fay.nc.us/~glenn/cygwin/ >.

-glenn

-- 
 )      Glenn Spell <glenn@gs.fay.nc.us>      )   _       _____
 )   Fayetteville, North Carolina, C. S. A.   )_ (__\____o /_/_ |
 )  _  _  _  _  _  _  _  _  _  _  _  _  _  _  )   >-----._/_/__]>
 )- blue skies - happy trails - sweet dreams -)             `0  |

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

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

* info - again
  1999-04-26  1:53 info - again R. Hickling
  1999-04-26  8:29 ` Mumit Khan
@ 1999-04-30 18:32 ` R. Hickling
  1 sibling, 0 replies; 16+ messages in thread
From: R. Hickling @ 1999-04-30 18:32 UTC (permalink / raw)
  To: cygwin

I have a 'dir' in '/usr/local/info', and 'info' runs, displaying its
'Top' node.

However, when I do 'm<whatever>' or even just 'h' it says
-------------------------------------
Info: No such file or directory
-------------------------------------
in the minibuffer.  It does the same irrespective of my 'INFOPATH' or
'--directory' (which I set to '/usr/local/info' which is where all my
'.info...' files are).

What else do I need to do?


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


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

* Re: info - again
  1999-04-26 10:00     ` Mumit Khan
@ 1999-04-30 18:32       ` Mumit Khan
  0 siblings, 0 replies; 16+ messages in thread
From: Mumit Khan @ 1999-04-30 18:32 UTC (permalink / raw)
  To: R. Hickling; +Cc: cygwin

"R. Hickling" <hicklinr@mcd.alcatel.be> writes:
> 
> './configure' worked fine.
> 'make' got past 'util' but failed in 'doc':
> ------------------------------------------------------------
> Making all in doc
> ../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
> info-stnd.texi: No such file or directory
> make[2]: *** [info-stnd.info] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
> ------------------------------------------------------------

You'll need to do some digging to see what is going wrong. This is what
I did with texinfo-3.12 when I did the initial build (I'm using the
original B20.1 Cygwin1 DLL on an NT 4.0SP3 machine):
  
  $ tar zxvf texinfo-3.12.tar.gz
  $ mkdir texinfo-3.12/BUILD
  $ cd texinfo-3.12/BUILD
  $ ../configure --prefix=/Cygnus/cygwin-b20 \
    --exec-prefix=/Cygnus/cygwin-b20/H-i586-cygwin32 -v i586-cygwin32
  $ make CC="gcc -I/usr/local/include"

my /usr/local/include contains all sorts of stuff like termcap, ncurses,
zlib, etc. I believe I have most of what Andy Piper distributes.

This is all from memory, but it's simple enough that it's a safe bet that
I haven't forgotten too much.

In your case, why don't you just tell make to ignore errors and go
forward? ie.,

  $ make -i

and see what happens?

Regards,
Mumit


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


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

* Re: info - again
  1999-04-27  3:06     ` David Starks-Browning
@ 1999-04-30 18:32       ` David Starks-Browning
  0 siblings, 0 replies; 16+ messages in thread
From: David Starks-Browning @ 1999-04-30 18:32 UTC (permalink / raw)
  To: R. Hickling; +Cc: cygwin

On Monday 26 Apr 99, R. Hickling writes:
> 
> './configure' worked fine.
> 'make' got past 'util' but failed in 'doc':
> ------------------------------------------------------------
> Making all in doc
> ../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
> info-stnd.texi: No such file or directory
> make[2]: *** [info-stnd.info] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
> ------------------------------------------------------------

I don't know if this is the cause of your specific problem, but I
found it necessary to do two extra things before I could build texinfo
successfully:

1. Delete or rename the "makinfo.exe" supplied with cygwin.  This
   is written as a no-op.

2. Replace cygwin's "install.exe" with one that works on *.exe
   files.  I found one at

< ftp://ftp.franken.de/pub/win32/develop/gnuwin32/cygwin/porters/Humblet_Pierre_A/install-cygwin-b20-sh >

Regards,
David

 -------------------------------------------------------------------
  David Starks-Browning                  | starksb@ebi.ac.uk
  EMBL Outstation --                     |
  The European Bioinformatics Institute  |
  Wellcome Trust Genome Campus           | tel: +44 (1223) 494 616
  Hinxton, Cambridge, CB10 1SD, UK       | fax: +44 (1223) 494 468
 -------------------------------------------------------------------


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


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

* Re: info - again
  1999-04-26  8:48   ` R. Hickling
                       ` (2 preceding siblings ...)
  1999-04-27  3:06     ` David Starks-Browning
@ 1999-04-30 18:32     ` R. Hickling
  3 siblings, 0 replies; 16+ messages in thread
From: R. Hickling @ 1999-04-30 18:32 UTC (permalink / raw)
  To: Mumit Khan; +Cc: cygwin

> > I have a 'dir' in '/usr/local/info', and 'info' runs, displaying its
> > 'Top' node.
> > However, when I do 'm<whatever>' or even just 'h' it says
> > Info: No such file or directory
> > in the minibuffer.  It does the same irrespective of my 'INFOPATH' or
> > '--directory' (which I set to '/usr/local/info' which is where all my
> > '.info...' files are).
> > What else do I need to do?
> You may just want to pull down texinfo and build it yourself. It does work
> for me, and I'm surprised that it's not working with your setup even with
> INFOPATH or --directory option!
> The only gotcha in building it, if I remember correctly, is that you may
> need to get termcap.h, which was left out of Cygwin b20.1. The termcap
> library itself is part of the distribution, so that part is ok.

'./configure' worked fine.
'make' got past 'util' but failed in 'doc':
------------------------------------------------------------
Making all in doc
../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
info-stnd.texi: No such file or directory
make[2]: *** [info-stnd.info] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive-am] Error 2
------------------------------------------------------------



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


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

* Re: info - again
  1999-04-30  6:14       ` Glenn Spell
@ 1999-04-30 18:32         ` Glenn Spell
  0 siblings, 0 replies; 16+ messages in thread
From: Glenn Spell @ 1999-04-30 18:32 UTC (permalink / raw)
  To: cygwin

Kevin Wright wrote:
> 
> I remember getting errors like that and I managed to 
> get to work by converting the .texi files from dos to unix 
> using trans. I can't remember where I got trans.exe but when
> I run it, it returns this info: 
> 	trans.exe 7.8 - (c) Kai Uwe Rommel - Feb 01 1994

I found that when converting multiple files, trans would crash.

A precompiled "flip" with docs can be found at
< http://www.fay.nc.us/~glenn/cygwin/ >.

-glenn

-- 
 )      Glenn Spell <glenn@gs.fay.nc.us>      )   _       _____
 )   Fayetteville, North Carolina, C. S. A.   )_ (__\____o /_/_ |
 )  _  _  _  _  _  _  _  _  _  _  _  _  _  _  )   >-----._/_/__]>
 )- blue skies - happy trails - sweet dreams -)             `0  |

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


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

* RE: info - again
  1999-04-26 15:11     ` Kevin Wright
  1999-04-30  6:14       ` Glenn Spell
@ 1999-04-30 18:32       ` Kevin Wright
  1 sibling, 0 replies; 16+ messages in thread
From: Kevin Wright @ 1999-04-30 18:32 UTC (permalink / raw)
  To: 'R. Hickling', 'Mumit Khan'; +Cc: cygwin

"R. Hickling" <hicklinr@mcd.alcatel.be> writes:

> './configure' worked fine.
> 'make' got past 'util' but failed in 'doc':
> ------------------------------------------------------------
> Making all in doc
> ../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
> info-stnd.texi: No such file or directory
> make[2]: *** [info-stnd.info] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
> ------------------------------------------------------------

I remember getting errors like that and I managed to 
get to work by converting the .texi files from dos to unix 
using trans. I can't remember where I got trans.exe but when
I run it, it returns this info: 
	trans.exe 7.8 - (c) Kai Uwe Rommel - Feb 01 1994

Hope this helps,

Kevin

> -----Original Message-----
> From: cygwin-owner@sourceware.cygnus.com
> [ mailto:cygwin-owner@sourceware.cygnus.com]On Behalf Of R. Hickling
> Sent: Monday, April 26, 1999 8:49 AM
> To: Mumit Khan
> Cc: cygwin@sourceware.cygnus.com
> Subject: Re: info - again
> 
> 
> > > I have a 'dir' in '/usr/local/info', and 'info' runs, 
> displaying its
> > > 'Top' node.
> > > However, when I do 'm<whatever>' or even just 'h' it says
> > > Info: No such file or directory
> > > in the minibuffer.  It does the same irrespective of my 
> 'INFOPATH' or
> > > '--directory' (which I set to '/usr/local/info' which is 
> where all my
> > > '.info...' files are).
> > > What else do I need to do?
> > You may just want to pull down texinfo and build it 
> yourself. It does work
> > for me, and I'm surprised that it's not working with your 
> setup even with
> > INFOPATH or --directory option!
> > The only gotcha in building it, if I remember correctly, is 
> that you may
> > need to get termcap.h, which was left out of Cygwin b20.1. 
> The termcap
> > library itself is part of the distribution, so that part is ok.
> 
> './configure' worked fine.
> 'make' got past 'util' but failed in 'doc':
> ------------------------------------------------------------
> Making all in doc
> ../makeinfo/makeinfo -I. `echo info-stnd.texi | sed 's,.*/,,'`
> info-stnd.texi: No such file or directory
> make[2]: *** [info-stnd.info] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
> ------------------------------------------------------------
> 
> 
> 
> --
> 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


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

* Re: info - again
  1999-04-26  8:29 ` Mumit Khan
  1999-04-26  8:48   ` R. Hickling
@ 1999-04-30 18:32   ` Mumit Khan
  1 sibling, 0 replies; 16+ messages in thread
From: Mumit Khan @ 1999-04-30 18:32 UTC (permalink / raw)
  To: R. Hickling; +Cc: cygwin

"R. Hickling" <hicklinr@mcd.alcatel.be> writes:
> I have a 'dir' in '/usr/local/info', and 'info' runs, displaying its
> 'Top' node.
> 
> However, when I do 'm<whatever>' or even just 'h' it says
> -------------------------------------
> Info: No such file or directory
> -------------------------------------
> in the minibuffer.  It does the same irrespective of my 'INFOPATH' or
> '--directory' (which I set to '/usr/local/info' which is where all my
> '.info...' files are).
> 
> What else do I need to do?
> 

You may just want to pull down texinfo and build it yourself. It does work
for me, and I'm surprised that it's not working with your setup even with
INFOPATH or --directory option!

The only gotcha in building it, if I remember correctly, is that you may
need to get termcap.h, which was left out of Cygwin b20.1. The termcap
library itself is part of the distribution, so that part is ok.

I'll investigate when I get some time.

Regards,
Mumit


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


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

* Re: info - again
  1999-04-27 18:27 N8TM
@ 1999-04-30 18:32 ` N8TM
  0 siblings, 0 replies; 16+ messages in thread
From: N8TM @ 1999-04-30 18:32 UTC (permalink / raw)
  To: starksb, hicklinr; +Cc: cygwin

In a message dated 4/27/99 3:07:56 AM Pacific Daylight Time, 
starksb@ebi.ac.uk writes:

> 2. Replace cygwin's "install.exe" with one that works on *.exe
>     files. 

Does the configure option --program-suffix='.exe' take care of this in some 
situations?

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


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

* Re: info - again
@ 1999-04-27 18:27 N8TM
  1999-04-30 18:32 ` N8TM
  0 siblings, 1 reply; 16+ messages in thread
From: N8TM @ 1999-04-27 18:27 UTC (permalink / raw)
  To: starksb, hicklinr; +Cc: cygwin

In a message dated 4/27/99 3:07:56 AM Pacific Daylight Time, 
starksb@ebi.ac.uk writes:

> 2. Replace cygwin's "install.exe" with one that works on *.exe
>     files. 

Does the configure option --program-suffix='.exe' take care of this in some 
situations?

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

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

end of thread, other threads:[~1999-04-30 18:32 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-04-26  1:53 info - again R. Hickling
1999-04-26  8:29 ` Mumit Khan
1999-04-26  8:48   ` R. Hickling
1999-04-26 10:00     ` Mumit Khan
1999-04-30 18:32       ` Mumit Khan
1999-04-26 15:11     ` Kevin Wright
1999-04-30  6:14       ` Glenn Spell
1999-04-30 18:32         ` Glenn Spell
1999-04-30 18:32       ` Kevin Wright
1999-04-27  3:06     ` David Starks-Browning
1999-04-30 18:32       ` David Starks-Browning
1999-04-30 18:32     ` R. Hickling
1999-04-30 18:32   ` Mumit Khan
1999-04-30 18:32 ` R. Hickling
1999-04-27 18:27 N8TM
1999-04-30 18:32 ` N8TM

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).