Please upload: perl-Win32-GUI-1.05-2

2007-12-26 Thread Reini Urban

As EXPERIMENTAL packages for now, together with the perl 5.10 package.

Those 5.10 are missing:
  perl-Error
  perl-Locale-gettext
  perl-ExtUtils-Depends
  perl-ExtUtils-PkgConfig
When all these are ready we can switch from test to curr.

Maybe the perl_manpages setup.hint is also not yet uploaded. (requiring 
test:)


wget \
http://rurban.xarch.at/cygr/perl-Win32-GUI/setup.hint \
http://rurban.xarch.at/cygr/perl-Win32-GUI/perl-Win32-GUI-1.05-2.tar.bz2 \
http://rurban.xarch.at/cygr/perl-Win32-GUI/perl-Win32-GUI-1.05-2-src.tar.bz2

Thanks.
--
Reini








Re: Use remote graphical program

2007-12-26 Thread Larry Hall (Cygwin X)

horacioemilio wrote:

Hi,

I am trying to use a remote program which is installed on a remote linux
machine. In these situations I usually do;

0) on my windows machine I start cygwin and afterwards use startxwin.sh

1) ssh -X name-of-the-gateway-machine

2) ssh -X name-of-the-linux-machine-inside-the-remote-network

3) program-name 

and programs like emacs or firefox appear on my desktop.

But for some other program which uses more advanced graphics it does not
work, I get the following error message;

[EMAIL PROTECTED]:~ Xlib:  extension GLX missing on display localhost:10.0 
.

Xlib:  extension GLX missing on display localhost:10.0.


snip



Do you know how could I overcome this situation ?


This is more appropriately directed to the Cygwin X list.  I've reset the
Reply-To there.  Please send any follow-up the the Cygwin X list.

From the above, it's clear the application you're trying to use wants
to access the underlying hardware (via OpenGL).  This is not supported
in the current Cygwin X server.  I believe there is a MinGW version which
has some support for this though.  You may want to investigate that.

--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
216 Dalton Rd.  (508) 429-6305 - FAX
Holliston, MA 01746

--
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: Problem with installing the X environment

2007-12-26 Thread Larry Hall (Cygwin X)

On 12/26/2007, David Garber wrote:
When I run it with xwin, I got the window, but if I try to run xterm  or 
anything else, I got exit 53 immediately afterwards. 


NET HELPMSG 53 Returns: The network path was not found.

This means you're missing a required DLL.  Run 'cygcheck xterm' to find out
what's missing and then 'cygcheck -f full path to DLL' to find out what
package you need to install to fulfill this requirement.  Then re-run
'setup.exe' and install that package.

--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
216 Dalton Rd.  (508) 429-6305 - FAX
Holliston, MA 01746

--
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: how can i change the color of xterms that connected with ssh to unix account

2007-12-26 Thread Meir Yanovich
Hello and thanks for the reply 
I don't have the possibility to change the remote host 
I was hopping to be able to change the color of the xterm window 
Every time I log in into remote host but to control it from cygwin 
For example if I type :
Can it be done ? 
Also I can't find the file /usr/share/doc/xterm-229/ctlseqs.txt 
In my installation is there some web reference to that ? 
Thanks allot 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Phil Betts
Sent: Friday, December 21, 2007 8:23 PM
To: cygwin-xfree@cygwin.com
Subject: RE: how can i change the color of xterms that connected with
ssh to unix account

Meir Yanovich wrote on Wednesday, December 19, 2007 2:51 PM::

 Hello all
 Im new to cygwin and X im using the
 cygwin\usr\X11R6\bin\startxwin.bat for simple x display
 for using the unix tools in windows and to connect with ssh to unix
 accounts
 now i like to be able to change the color of the xterm every time I
 connect with ssh to remote host
 can it be done ?
 Thanks

To change the xterm background to pink, use this command:
$ echo -e '\e]11;pink\007'

To do this automatically when you log in via ssh, add the following 
to your .bash_profile on the remote host.

if [ ! -z $SSH_TTY ];then echo -e '\e]11;pink\007';fi

To ensure this only happens on interactive shells, change the first
part to:

if [[ $- == *i* ]]  [ ! -z $SSH_TTY ];then ...


Read the file /usr/share/doc/xterm-229/ctlseqs.txt for other escape
sequences you can use to control xterm.

Phil

--
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/



Lost characters with fputc/putc

2007-12-26 Thread Juan Jose Garcia-Ripoll
Hi,

I am the maintainer of a free common lisp environment called ECL
(http://ecls.sourceforge.net), which has been ported to cygwin long
time ago.

Recently I have noticed some problems with a code that basically does this
 - open a FILE with w+b
 - write a character to it
 - flush
 - close file
The thing is that if I use fputc or putc to write the character, it is
lost, while using fwrite() does just the right thing. I just show you
the difference
#if 1
if (fputc(c, fp) == EOF) /* version A */
io_error(strm);
#else
if (fwrite(c, 1, 1, fp)  1) /* version B */
io_error(strm);
#endif

No other file operation is performed on this file and I have not been
able to simplify this to a smaller C program that shows this problem
so far, but I am just comparing two big programs which only differ on
these two lines. The same program just builds and runs fine on Linux,
FreeBSD, OpenBSD, NetBSD, Mac OS X and Solaris, as well as with Mingw
and MSVC, so I suspect there is something wrong with the cygwin port
or the cygwin libraries exclusively.

Help on solving this issue is most welcome. Otherwise I will simply
have to abandon this port.

Cheers,

Juanjo

P.S.: In case somebody wants to reproduce this, after building ECL
with ./configure --prefix=$HOME or something similar, and installing
it, just do ecl.exe -load file.lsp where file.lsp contains the
following lines.

(si::system rm -f foo) ; delete previous files
(LET ((S (OPEN foo :direction :IO :if-does-not-exist :create)))
   (write-char #\h s) ; create a file foo with only a character
   (force-output s)
   (close s))
(si::system cat foo; echo) ; type file to see whether character is present
(si::system ls -l foo*)

-- 
Facultad de Fisicas, Universidad Complutense,
Ciudad Universitaria s/n Madrid 28040 (Spain)
http://juanjose.garciaripoll.googlepages.com

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



Squid use and configuration on cygwin

2007-12-26 Thread Kevin Hilton
Are there any good guides to getting squid up and running on cygwin.
The official squid documentation keeps talking of a Cygwin users
guide, however I cant find any link to this guide.  Im attempting to
setup the squid version that comes with the cygwin distribution.  Do I
have to create a nobody account?

So many questions -- cant seem to find anything more than a few
sentences regarding cygwin.

-- 
Kevin Hilton

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



Re: Squid use and configuration on cygwin

2007-12-26 Thread Greg Chicares
On 2007-12-26 15:48Z, Kevin Hilton wrote:

 The official squid documentation keeps talking of a Cygwin users
 guide, however I cant find any link to this guide.

http://www.google.com/search?q=cygwin+users+guide

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



Re: 1.5.25-7: problem about bash completion

2007-12-26 Thread kou yu
On Dec 23, 2007 1:26 PM, Christopher Faylor
[EMAIL PROTECTED] wrote:
 On Sun, Dec 23, 2007 at 01:02:23PM +0800, kou yu wrote:
 o, maybe you are right.

 It's a good bet that she is.

 But I am a little confused. //server/share is the POSIX syntax for
 SMB share paths, but on windows the syntax is \\server\share.

 POSIX *allows* '//something' to have a special meaning.  It doesn't
 state that it is necessarily the syntax for SMB share paths.

 And why on linux I input cd //usr/tab, the completion would not
 become slow, i.e. why on linux, the syntax //xxx/xxx would not be
 considered as remote SMB share. (except smbclient //server/share)

 Because a '//' has no special meaning on linux.  Both '//server/share'
 and '\\server\share' are valid syntax for Windows.

 You can believe this or not but Cygwin's behavior is not going to
 change.


In fact, if you simply say that this is not a bug of cygwin, but a
feature, then I would believe you.


 cgf


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



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



Use remote graphical program

2007-12-26 Thread horacioemilio

Hi,

I am trying to use a remote program which is installed on a remote linux
machine. In these situations I usually do;

0) on my windows machine I start cygwin and afterwards use startxwin.sh

1) ssh -X name-of-the-gateway-machine

2) ssh -X name-of-the-linux-machine-inside-the-remote-network

3) program-name 

and programs like emacs or firefox appear on my desktop.

But for some other program which uses more advanced graphics it does not
work, I get the following error message;

[EMAIL PROTECTED]:~ Xlib:  extension GLX missing on display localhost:10.0 

.
Xlib:  extension GLX missing on display localhost:10.0.
Xlib:  extension GLX missing on display localhost:10.0.
Xlib:  extension GLX missing on display localhost:10.0.
Xlib:  extension GLX missing on display localhost:10.0.
Xlib:  extension GLX missing on display localhost:10.0.
Xlib:  extension GLX missing on display localhost:10.0.
Xlib:  extension GLX missing on display localhost:10.0.
Xlib:  extension GLX missing on display localhost:10.0.
moe: WT fatal error: OpenGL: Can't find suitable visual

Reading cygwin forums I tried  two times ssh -Y instead of ssh -X and now I
don't get the previous error message, instead I get;

1) when trying to connect to the first machine; Warning: No xauth data;
using fake authentication data for X11 forwarding.

2) connecting to the second machine and starting the program;

 Xlib:  extension XFree86-DRI missing on display localhost:10.0.

The program starts, the main screen appears, but the menus don't appear,
so I can not use the program.

Do you know how could I overcome this situation ?

Thanks



-- 
View this message in context: 
http://www.nabble.com/Use-remote-graphical-program-tp14504480p14504480.html
Sent from the Cygwin list mailing list archive at Nabble.com.


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



Building Ruby (was Re: Ruby on Rails 2.0.2/Cygwin Bug)

2007-12-26 Thread Mike Boone
In reference to that /dev/urandom bug I encountered last week, I
thought I might try to build Ruby from source on Cygwin and see how it
works.

I downloaded Ruby 1.8.6-p111 off the ruby-lang.org website, unpacked
it, then ./configure and make. This fails with:

./missing/strftime.c:193: error: 'timezone' redeclared as different
kind of symbol
/usr/include/cygwin/time.h:33: error: previous declaration of
'timezone' was here
make: *** [strftime.o] Error 1

I'm not sure why that happens, and I'm not sure what's different about
the Cygwin Ruby package which works. Any ideas?

Incidentally, I downloaded the new development release of Ruby 1.9.0,
and it compiles just fine on Cygwin. It also runs my /dev/urandom bug
script without failing, and lseek is not called in the strace.

Mike Boone
http://boonedocks.net/mike/

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



Re: Squid use and configuration on cygwin

2007-12-26 Thread Christopher Faylor
On Wed, Dec 26, 2007 at 04:24:55PM +, Greg Chicares wrote:
On 2007-12-26 15:48Z, Kevin Hilton wrote:

 The official squid documentation keeps talking of a Cygwin users
 guide, however I cant find any link to this guide.

http://www.google.com/search?q=cygwin+users+guide

Or, you could go to the Cygwin web site and find User's Guide under
Documentation.

I know.  Pretty astonishing.

cgf

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



stackdumps during install on windows vista + other problems

2007-12-26 Thread Eric Lilja

Hello, I just installed Cygwin on my new laptop that is running Windows
Vista Business edition. I've used cygwin for a few years but this is my
first time ever using Windows Vista.

I did my usual install (mostly developement related packages, no X), 
then I fired up bash to get the skeleton files copied to my home 
directory. That seemed to work fine. Anyway, then I closed cygwin down 
and when I was about to copy my old .bashrc and .inputrc I noticed two 
stackdump files in the c:/cygwin directory. I don't know how helpful 
they are going to be but I'm attaching them anyway. Then I started bash 
again, this time with the new .bashrc and .inputrc and bash complains:

Your group is currently mkpasswd.  This indicates that
the /etc/passwd (and possibly /etc/group) files should be rebuilt.
See the man pages for mkpasswd and mkgroup then, for example, run
mkpasswd -l [-d]  /etc/passwd
mkgroup  -l [-d]  /etc/group
Note that the -d switch is necessary for domain users.

I must admit I haven't tried following the suggestions displayed. If I 
don't have really wierd settings on this mahcine I guess it might be 
because of the stackdumping processes during the installation phase.


Anyway, I performed a cygcheck -svr  cygcheck.out which is attached.
But something weird happens:
$ cygcheck -svr  cygcheck.out
'id' program not found
'id' program not found

However, I still get a cygcheck.out-file but I have never seen that 'id' 
stuff before. Btw, looking at the outfile gives me the impression that 
cygheck thinks Windows Vista is not supported, but I thought the 
problems with it (something involving manifests iirc) were sorted out 
months ago?


Anyway, the little I've tried with cygwin seems to work fine but the 
stackdumps during the installtion phase and the warnings I get when 
launching bash and running cygcheck worries me so I thought it would be 
 a good idea to post about it here. Happy holidays!


- Eric
Exception: STATUS_ACCESS_VIOLATION at eip=610677F7
eax= ebx= ecx= edx= esi= edi=
ebp=0022C2B8 esp=0022C290 program=C:\cygwin\bin\bash.exe, pid 2808, thread main
cs=001B ds=0023 es=0023 fs=003B gs= ss=0023
Stack trace:
Frame Function  Args
0022C2B8  610677F7  (6116AD78, 61169838, 01B6, )
End of stack trace
Exception: STATUS_ACCESS_VIOLATION at eip=610677F7
eax= ebx= ecx= edx= esi= edi=
ebp=0022BDE8 esp=0022BDC0 program=C:\cygwin\bin\sh.exe, pid 2796, thread main
cs=001B ds=0023 es=0023 fs=003B gs= ss=0023
Stack trace:
Frame Function  Args
0022BDE8  610677F7  (61169C08, 61169838, 0008, 01074280)
End of stack trace

Cygwin Configuration Diagnostics
Current System Time: Thu Dec 27 01:19:37 2007

Windows Longhorn/Vista (not yet supported!) Ver 6.0 Build 6000 

Path:   C:\cygwin\usr\local\bin
C:\cygwin\bin
C:\cygwin\bin
C:\cygwin\usr\X11R6\bin
c:\Windows\system32
c:\Windows
c:\Windows\System32\Wbem
c:\emacs-23\bin

SysDir: C:\Windows\system32
WinDir: C:\Windows

USER = 'mindcooler'
PWD = '/home/mindcooler'
HOME = '/home/mindcooler'
MAKE_MODE = 'unix'

HOMEPATH = '\Users\mindcooler'
MANPATH = '/usr/local/man:/usr/share/man:/usr/man:'
APPDATA = 'C:\Users\mindcooler\AppData\Roaming'
HOSTNAME = 'mindcool-laptop'
TERM = 'cygwin'
PROCESSOR_IDENTIFIER = 'x86 Family 6 Model 15 Stepping 11, GenuineIntel'
WINDIR = 'C:\Windows'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/usr/bin'
PROGRAMDATA = 'C:\ProgramData'
USERDOMAIN = 'mindcool-laptop'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\ProgramData'
!:: = '::\'
TEMP = '/cygdrive/c/Users/MINDCO~1/AppData/Local/Temp'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
USERNAME = 'mindcooler'
PROCESSOR_LEVEL = '6'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
USERPROFILE = 'C:\Users\mindcooler'
PS1 = '\[\e]0;[EMAIL PROTECTED] \[\e[33m\]\w\[\e[0m\]\n\$ '
LOGONSERVER = '\\MINDCOOL-LAPTOP'
PROCESSOR_ARCHITECTURE = 'x86'
LOCALAPPDATA = 'C:\Users\mindcooler\AppData\Local'
!C: = 'C:\cygwin\bin'
SHLVL = '1'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
HOMEDRIVE = 'C:'
PROMPT = '$P$G'
COMSPEC = 'C:\Windows\system32\cmd.exe'
TMP = '/cygdrive/c/Users/MINDCO~1/AppData/Local/Temp'
SYSTEMROOT = 'C:\Windows'
PRINTER = 'Microsoft XPS Document Writer'
CVS_RSH = '/bin/ssh'
PROCESSOR_REVISION = '0f0b'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:'
PROGRAMFILES = 'C:\Program Files'
NUMBER_OF_PROCESSORS = '2'
SESSIONNAME = 'Console'
COMPUTERNAME = 'MINDCOOL-LAPTOP'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = '/cygdrive'
  

Re: Use remote graphical program

2007-12-26 Thread Larry Hall (Cygwin X)

horacioemilio wrote:

Hi,

I am trying to use a remote program which is installed on a remote linux
machine. In these situations I usually do;

0) on my windows machine I start cygwin and afterwards use startxwin.sh

1) ssh -X name-of-the-gateway-machine

2) ssh -X name-of-the-linux-machine-inside-the-remote-network

3) program-name 

and programs like emacs or firefox appear on my desktop.

But for some other program which uses more advanced graphics it does not
work, I get the following error message;

[EMAIL PROTECTED]:~ Xlib:  extension GLX missing on display localhost:10.0 
.

Xlib:  extension GLX missing on display localhost:10.0.


snip



Do you know how could I overcome this situation ?


This is more appropriately directed to the Cygwin X list.  I've reset the
Reply-To there.  Please send any follow-up the the Cygwin X list.

From the above, it's clear the application you're trying to use wants
to access the underlying hardware (via OpenGL).  This is not supported
in the current Cygwin X server.  I believe there is a MinGW version which
has some support for this though.  You may want to investigate that.

--
Larry Hall  http://www.rfk.com
RFK Partners, Inc.  (508) 893-9779 - RFK Office
216 Dalton Rd.  (508) 429-6305 - FAX
Holliston, MA 01746

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



Mac, cygwin, flash

2007-12-26 Thread Barbara Shirtcliff
Hi gracious experts!

Please don't flame me.  I'm a mac user, but I used to use cygwin, back
when I was a kid and didn't get to choose my operating system.  Well,
I have a 4 GB Flash drive coming in the mail (incredibly, it is the
size of a half-smoked cigar), and I was wondering if I could justify
my purchase by putting cygwin onto it so that I can use emacs and a
latex processor on any desktop.  I found the post describing how to
put cygwin onto a flash drive
(http://www.cygwin.com/ml/cygwin/2003-07/msg01117.html), but this
description requires a working installation on a windows machine.

Unfortunately, the desktops to which I have access are feeble, and I
would not want to spend 55 hours downloading and getting everything to
work there.

Is there a way for me to acquire a working cygwin dist from here, from
my speedy old powerbook G4?

Cheers,
Bar


-- 
Barbara Shirtcliff
PhD Student
Russian History
University of Illinois at Chicago


Read over your compositions, and wherever you meet with a
passage which you think is particularly fine, strike it out.
--Samuel Johnson

A man is morally free when, in full possession of his living humanity,
he judges the world, and judges other men, with uncompromising
sincerity.
--George Santayana

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