Re: XV Installation Problem

2006-04-16 Thread steven woody
oh, please. can anyone help me ?

On 4/14/06, steven woody [EMAIL PROTECTED] wrote:
 On 4/13/06, Igor Peshansky [EMAIL PROTECTED] wrote:
  Ugh, top-posting...  Reformatted.
 
  On Wed, 12 Apr 2006, steven woody wrote:
 
   On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:
 
  http://cygwin.com/acronyms/#PCYMTNQREAIYR.  Thanks.
 
On Tue, 11 Apr 2006, steven woody wrote:
   
 my installation of cygwin has already included xorg-xfree-devel
 package, but the i still get error when compile XV 3.10a. below is
 information:

 ...
 ./RANLIB.csh libtiff.a
 make[1]: ./RANLIB.csh: Command not found
 make[1]: *** [libtiff.a] Error 127
 make[1]: Leaving directory /usr/src/xv-3.10a/tiff
 make: *** [tiff/libtiff.a] Error 2
   
Looks like you either used a non-Cygwin version of tar to unpack the
source, or you're using an OS/filesystem/setting combo that doesn't
support executable bits on files.  Please follow the Cygwin problem
reporting guidelines at http://cygwin.com/problems.html.
   
If it's the former, unpack the source tarball again using the Cygwin
version of tar, which should set executable permissions properly.  It
could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
executable), in which case a chmod a+x RANLIB.csh should do the trick.
  
   Thank you Igor.
  
   i am using Cygwin version of tar.
  
   i found there is only one RANLIB.csh which is in tiff/ directory, and
   the .csh file has executable bit set ok.
 
  As Matthias mentioned, you are likely either missing /usr/bin/csh or the
  tcsh package.  The latter guess would have been confirmed had you followed
  the problem reporting guidelines at http://cygwin.com/problems.html.  In
  either case, (re)installing the tcsh package should fix your problem.
  Igor

 thank you. i installed the tcsh and passed the previous steps.  but
 got another error:

 make[1]: Leaving directory `/usr/src/xv-3.10a/tiff'
 cc -O  -DDOJPEG -Ijpeg -DDOTIFF -Itiff -DDOPDS -c xv.c
 In file included from xv.c:11:
 xv.h:119: error: conflicting types for 'sys_errlist'
 /usr/include/sys/errno.h:23: error: previous declaration of
 'sys_errlist' was here
 xv.h:119: error: conflicting types for 'sys_errlist'
 /usr/include/sys/errno.h:23: error: previous declaration of
 'sys_errlist' was here
 make: *** [xv.o] Error 1

 please help!

 --
 woody



--
woody

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-16 Thread Thierry Pirot
steven woody writes:

 oh, please. can anyone help me ?
...
  got another error:
 
  make[1]: Leaving directory `/usr/src/xv-3.10a/tiff'
  cc -O  -DDOJPEG -Ijpeg -DDOTIFF -Itiff -DDOPDS -c xv.c
  In file included from xv.c:11:
  xv.h:119: error: conflicting types for 'sys_errlist'
  /usr/include/sys/errno.h:23: error: previous declaration of
  'sys_errlist' was here
  xv.h:119: error: conflicting types for 'sys_errlist'
  /usr/include/sys/errno.h:23: error: previous declaration of
  'sys_errlist' was here
  make: *** [xv.o] Error 1
 
  please help!
 
A couple of years ago I installed xv.  
Here are the notes I took then : 

   Installed from sources, modifying
   in makefile : 
 CC = gcc -ansi -I/usr/X11R6/include/ -L/usr/X11R6/lib/
 MANDIR = /usr/man/man1
   in Xos.h : 
 extern __IMPORT _CONST char * _CONST _sys_errlist[];

Didn't tried anything it know, just hope it helps.  
-- 
   Take it Easy  Don't worryBe Happy

   Thierry

°°ºo§oº°°ºo§oº°°ºo§oº°°ºo§oº°°ºo§oº°°


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-13 Thread steven woody
On 4/13/06, Igor Peshansky [EMAIL PROTECTED] wrote:
 Ugh, top-posting...  Reformatted.

 On Wed, 12 Apr 2006, steven woody wrote:

  On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:

 http://cygwin.com/acronyms/#PCYMTNQREAIYR.  Thanks.

   On Tue, 11 Apr 2006, steven woody wrote:
  
my installation of cygwin has already included xorg-xfree-devel
package, but the i still get error when compile XV 3.10a. below is
information:
   
...
./RANLIB.csh libtiff.a
make[1]: ./RANLIB.csh: Command not found
make[1]: *** [libtiff.a] Error 127
make[1]: Leaving directory /usr/src/xv-3.10a/tiff
make: *** [tiff/libtiff.a] Error 2
  
   Looks like you either used a non-Cygwin version of tar to unpack the
   source, or you're using an OS/filesystem/setting combo that doesn't
   support executable bits on files.  Please follow the Cygwin problem
   reporting guidelines at http://cygwin.com/problems.html.
  
   If it's the former, unpack the source tarball again using the Cygwin
   version of tar, which should set executable permissions properly.  It
   could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
   executable), in which case a chmod a+x RANLIB.csh should do the trick.
 
  Thank you Igor.
 
  i am using Cygwin version of tar.
 
  i found there is only one RANLIB.csh which is in tiff/ directory, and
  the .csh file has executable bit set ok.

 As Matthias mentioned, you are likely either missing /usr/bin/csh or the
 tcsh package.  The latter guess would have been confirmed had you followed
 the problem reporting guidelines at http://cygwin.com/problems.html.  In
 either case, (re)installing the tcsh package should fix your problem.
 Igor

thank you. i installed the tcsh and passed the previous steps.  but
got another error:

make[1]: Leaving directory `/usr/src/xv-3.10a/tiff'
cc -O  -DDOJPEG -Ijpeg -DDOTIFF -Itiff -DDOPDS -c xv.c
In file included from xv.c:11:
xv.h:119: error: conflicting types for 'sys_errlist'
/usr/include/sys/errno.h:23: error: previous declaration of
'sys_errlist' was here
xv.h:119: error: conflicting types for 'sys_errlist'
/usr/include/sys/errno.h:23: error: previous declaration of
'sys_errlist' was here
make: *** [xv.o] Error 1

please help!

--
woody

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



AW: XV Installation Problem

2006-04-12 Thread Morche Matthias
In that case I guess it contains a starting line #!/usr/bin/csh and there is 
no /usr/bin/csh, that always leads to the error message, you've seen.

  matthias


 

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von steven woody
Gesendet: Mittwoch, 12. April 2006 03:55
An: cygwin-xfree@cygwin.com
Betreff: Re: XV Installation Problem

Thank you Igor.

i am using Cygwin version of tar.

i found there is only one RANLIB.csh which is in tiff/ directory, and
the .csh file has executable bit set ok.

any other clue?

On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:
 On Tue, 11 Apr 2006, steven woody wrote:

  my installation of cygwin has already included xorg-xfree-devel
  package, but the i still get error when compile XV 3.10a. below is
  information:
 
  ...
  ./RANLIB.csh libtiff.a
  make[1]: ./RANLIB.csh: Command not found
  make[1]: *** [libtiff.a] Error 127
  make[1]: Leaving directory /usr/src/xv-3.10a/tiff
  make: *** [tiff/libtiff.a] Error 2

 Looks like you either used a non-Cygwin version of tar to unpack the
 source, or you're using an OS/filesystem/setting combo that doesn't
 support executable bits on files.  Please follow the Cygwin problem
 reporting guidelines at http://cygwin.com/problems.html.

 If it's the former, unpack the source tarball again using the Cygwin
 version of tar, which should set executable permissions properly.  It
 could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
 executable), in which case a chmod a+x RANLIB.csh should do the trick.
 HTH,
 Igor
 --
 http://cs.nyu.edu/~pechtcha/
   |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
 ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
  |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
 '---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

 Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte.
 But no -- you are no fool; you call yourself a fool, there's proof enough in
 that! -- Rostand, Cyrano de Bergerac

 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://x.cygwin.com/docs/
 FAQ:   http://x.cygwin.com/docs/faq/




--
woody

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-12 Thread Igor Peshansky
Ugh, top-posting...  Reformatted.

On Wed, 12 Apr 2006, steven woody wrote:

 On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:

http://cygwin.com/acronyms/#PCYMTNQREAIYR.  Thanks.

  On Tue, 11 Apr 2006, steven woody wrote:
 
   my installation of cygwin has already included xorg-xfree-devel
   package, but the i still get error when compile XV 3.10a. below is
   information:
  
   ...
   ./RANLIB.csh libtiff.a
   make[1]: ./RANLIB.csh: Command not found
   make[1]: *** [libtiff.a] Error 127
   make[1]: Leaving directory /usr/src/xv-3.10a/tiff
   make: *** [tiff/libtiff.a] Error 2
 
  Looks like you either used a non-Cygwin version of tar to unpack the
  source, or you're using an OS/filesystem/setting combo that doesn't
  support executable bits on files.  Please follow the Cygwin problem
  reporting guidelines at http://cygwin.com/problems.html.
 
  If it's the former, unpack the source tarball again using the Cygwin
  version of tar, which should set executable permissions properly.  It
  could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
  executable), in which case a chmod a+x RANLIB.csh should do the trick.

 Thank you Igor.

 i am using Cygwin version of tar.

 i found there is only one RANLIB.csh which is in tiff/ directory, and
 the .csh file has executable bit set ok.

As Matthias mentioned, you are likely either missing /usr/bin/csh or the
tcsh package.  The latter guess would have been confirmed had you followed
the problem reporting guidelines at http://cygwin.com/problems.html.  In
either case, (re)installing the tcsh package should fix your problem.
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
 |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte.
But no -- you are no fool; you call yourself a fool, there's proof enough in
that! -- Rostand, Cyrano de Bergerac

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-11 Thread Igor Peshansky
On Tue, 11 Apr 2006, steven woody wrote:

 my installation of cygwin has already included xorg-xfree-devel
 package, but the i still get error when compile XV 3.10a. below is
 information:

 ...
 ./RANLIB.csh libtiff.a
 make[1]: ./RANLIB.csh: Command not found
 make[1]: *** [libtiff.a] Error 127
 make[1]: Leaving directory /usr/src/xv-3.10a/tiff
 make: *** [tiff/libtiff.a] Error 2

Looks like you either used a non-Cygwin version of tar to unpack the
source, or you're using an OS/filesystem/setting combo that doesn't
support executable bits on files.  Please follow the Cygwin problem
reporting guidelines at http://cygwin.com/problems.html.

If it's the former, unpack the source tarball again using the Cygwin
version of tar, which should set executable permissions properly.  It
could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
executable), in which case a chmod a+x RANLIB.csh should do the trick.
HTH,
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
 |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte.
But no -- you are no fool; you call yourself a fool, there's proof enough in
that! -- Rostand, Cyrano de Bergerac

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XV Installation Problem

2006-04-11 Thread steven woody
Thank you Igor.

i am using Cygwin version of tar.

i found there is only one RANLIB.csh which is in tiff/ directory, and
the .csh file has executable bit set ok.

any other clue?

On 4/11/06, Igor Peshansky [EMAIL PROTECTED] wrote:
 On Tue, 11 Apr 2006, steven woody wrote:

  my installation of cygwin has already included xorg-xfree-devel
  package, but the i still get error when compile XV 3.10a. below is
  information:
 
  ...
  ./RANLIB.csh libtiff.a
  make[1]: ./RANLIB.csh: Command not found
  make[1]: *** [libtiff.a] Error 127
  make[1]: Leaving directory /usr/src/xv-3.10a/tiff
  make: *** [tiff/libtiff.a] Error 2

 Looks like you either used a non-Cygwin version of tar to unpack the
 source, or you're using an OS/filesystem/setting combo that doesn't
 support executable bits on files.  Please follow the Cygwin problem
 reporting guidelines at http://cygwin.com/problems.html.

 If it's the former, unpack the source tarball again using the Cygwin
 version of tar, which should set executable permissions properly.  It
 could also be that the tarball itself is broken (i.e., RANLIB.csh isn't
 executable), in which case a chmod a+x RANLIB.csh should do the trick.
 HTH,
 Igor
 --
 http://cs.nyu.edu/~pechtcha/
   |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
 ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
  |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
 '---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

 Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte.
 But no -- you are no fool; you call yourself a fool, there's proof enough in
 that! -- Rostand, Cyrano de Bergerac

 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://x.cygwin.com/docs/
 FAQ:   http://x.cygwin.com/docs/faq/




--
woody

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/