[issue2233] Makefile.pre.in contains extra slash before $(DESTDIR) which can cause Cygwin build to fail

2014-07-10 Thread Jason Tishler
Jason Tishler added the comment: AFAICT, yes. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2233 ___ ___ Python-bugs-list mailing list

Updated Cygwin Package: python-2.7.3-1

2013-02-08 Thread Jason Tishler
New News: === *** Cygwin has migrating from Python 2.6 to 2.7. *** I have updated the version of Python to 2.7.3-1. The tarballs should be available on a Cygwin mirror near you shortly. The following is the only change since the previous release: o promote from experimental

Updated Cygwin Package (experimental): python-2.7.3-1

2012-12-19 Thread Jason Tishler
*** Attention Cygwin Python module package maintainers *** *** Cygwin is migrating from Python 2.6 to 2.7... *** New News: === I have released Cygwin Python 2.7.3-1 as experimental. The tarballs should be available on a Cygwin mirror near you shortly. The main purpose of this release

New Cygwin Package: python-3.2.3-1

2012-07-26 Thread Jason Tishler
New News: === I have released Cygwin Python 3.2.3-1. The tarballs should be available on a Cygwin mirror near you shortly. This is the first, official Python 3 release in the Cygwin standard distribution and consists of the following packages: o idle3-3.2.3-1 o python3-3.2.3-1

[issue15047] Cygwin install (regen) problem

2012-06-14 Thread Jason Tishler
Jason Tishler ja...@tishler.net added the comment: The problem is due to Cygwin's automatic .exe extension handling. See the attached patch (i.e., code comment) for the details. Is this patch acceptable? -- keywords: +patch stage: - patch review type: - behavior Added file: http

[issue13756] Python3.2.2 make fail on cygwin

2012-06-11 Thread Jason Tishler
Jason Tishler ja...@tishler.net added the comment: I offer the attached patch for consideration. AFAICT, only the Makefile.pre.in and build_ext.py changes are required. I included the makesetup change for completeness and to be consistent with the other changes. -- keywords: +patch

[issue15047] Cygwin install (regen) problem

2012-06-11 Thread Jason Tishler
New submission from Jason Tishler ja...@tishler.net: The Cygwin build is failing during make install -- specifically, during the regen step: [snip] mkdir /home/jt/src/cygwin/cygwin-packages/1.7/python3-test/python-3.2.3-1/src/Python-3.2.3/Lib/plat-cygwin cp /home/jt/src/cygwin/cygwin

Updated Cygwin Package: python-2.6.8-2

2012-06-10 Thread Jason Tishler
New News: === I have updated the version of Python to 2.6.8-2. The tarballs should be available on a Cygwin mirror near you shortly. The following are the changes since the previous release: o build against expat 2.1.0 so pyexpat builds cleanly:

[issue786827] IDLE starts with no menus (Cygwin)

2012-03-26 Thread Jason Tishler
Jason Tishler ja...@tishler.net added the comment: AFAICT, this issue is resolved in the latest Cygwin Python package (i.e., 2.6.7-1) that is built against a X11-based Tcl/Tk instead of a Win32 GDI version: http://cygwin.com/ml/cygwin-announce/2012-02/msg00014.html

[issue786827] IDLE starts with no menus (Cygwin)

2012-03-26 Thread Jason Tishler
Jason Tishler ja...@tishler.net added the comment: Please do. When I tested the Cygwin Python 2.6.7-1 release, IDLE was one of my testcases. In my limited testing (I'm not a regular IDLE user), the menus appeared to function properly

Updated Cygwin Package: python-2.6.7-1

2012-02-08 Thread Jason Tishler
New News: === I have updated the version of Python to 2.6.7-1. The tarballs should be available on a Cygwin mirror near you shortly. The following are the changes since the previous release: o upgrade to Python 2.6.7 o build against Unix X11 Tcl/Tk o patch for

Updated Cygwin Package : python-2.6.5-2

2010-06-21 Thread Jason Tishler
*** Attention Cygwin Python module package maintainers: *** *** Cygwin has migrated from Python 2.5 to 2.6. *** *** Please build, test, and release your packages ASAP. *** New News: === I have updated the version of Python to 2.6.5-2. The tarballs should be available on a Cygwin

Updated Cygwin Package (experimental): python-2.6.5-1

2010-05-01 Thread Jason Tishler
*** Attention Cygwin Python module package maintainers *** *** Cygwin is migrating from Python 2.5 to 2.6... *** New News: === I have released Cygwin Python 2.6.5-1 as experimental. The tarballs should be available on a Cygwin mirror near you shortly. The main purpose of this release

[issue2233] Makefile.pre.in contains extra slash before $(DESTDIR) which can cause Cygwin build to fail

2009-01-14 Thread Jason Tishler
Jason Tishler ja...@tishler.net added the comment: Your latest patch is on the right track, but see my latest one, Makefile.pre.in.v2.diff, for an optimization. I tested make install with and without DESTDIR defined on the command line and both cases behaved as expected. Added file: http

[issue2233] Makefile.pre.in contains extra slash before $(DESTDIR) which can cause Cygwin build to fail

2009-01-14 Thread Jason Tishler
Jason Tishler ja...@tishler.net added the comment: I guess you mean the following: ${var:-value} Old BSD shells, including the Ultrix sh, don't accept the colon for any shell substitution, and complain and die. If so, should we just go forward without the colon? The bash manpage indicates

[issue2233] Makefile.pre.in contains extra slash before $(DESTDIR) which can cause Cygwin build to fail

2009-01-12 Thread Jason Tishler
Jason Tishler ja...@tishler.net added the comment: Obviously not... :,( It seems like we might have to go with your /./ workaround, but let me see if I can come up with another approach. ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue1706863] Failed to build Python 2.5.1 with sqlite3

2008-09-25 Thread Jason Tishler
Jason Tishler [EMAIL PROTECTED] added the comment: Hirokazu Yamamoto wrote: Umm, it works, but I'm not sure we can call import library as dylib... Agreed. I had considered attached patch experimental_distutils.patch. It's little adhoky, I'm not sure this patch is acceptable. The new

[issue1706863] Failed to build Python 2.5.1 with sqlite3

2008-09-24 Thread Jason Tishler
Jason Tishler [EMAIL PROTECTED] added the comment: Hirokazu Yamamoto wrote: Python is not using CCygwinCCompiler to build itself on cygwin. Which I why my patch modifies UnixCCompiler instead of CCygwinCCompiler. FWIW, my patch leverages the already existing Cygwin specific code

Re: Problem with Python shell through Cygwin Screen (Python/Vim/Screen combo)

2008-09-19 Thread Jason Tishler
Ant, On Fri, Sep 19, 2008 at 03:10:10AM -0700, Ant wrote: [snip] This works great in Linux, and also in Windows using the Cygwin build of Python, but when you call: screen -S py -s python using the Windows build of Python, the shell just hangs. Does anyone know if this is a known issue

[issue1706863] Failed to build Python 2.5.1 with sqlite3

2008-09-09 Thread Jason Tishler
Jason Tishler [EMAIL PROTECTED] added the comment: The Cygwin build is having the same problem: http://cygwin.com/ml/cygwin/2008-09/msg00145.html In this case, the sqlite3 libraries are installed (in /usr/lib), but their suffixes do not match the expected values. Does anyone know the best

Re: SVN access with pysvn under Cygwin (Installation problems)

2008-07-31 Thread Jason Tishler
Andy, On Thu, Jul 31, 2008 at 03:10:26AM -0700, Andy Dingley wrote: On 30 Jul, 20:30, Jason Tishler [EMAIL PROTECTED] wrote: You need to build (and install) pysvn under Cygwin. The pre-built Windows version will not work under Cygwin. Thanks. Presumably this same problem would affect

Re: SVN access with pysvn under Cygwin (Installation problems)

2008-07-30 Thread Jason Tishler
Andy, On Wed, Jul 30, 2008 at 07:46:32AM -0700, Andy Dingley wrote: Trying to install the pysvn module I'm running into problems getting it to work under Cygwin. Works fine from a Windows command prompt, with both the svn_cmd.py example and my own Python code. Under Cygwin though I just get

Re: Getting Python to run Python Scripts in cygwin

2008-06-19 Thread Jason Tishler
Calvin, On Fri, Jun 20, 2008 at 12:14:03AM +0800, Calvin Cheng wrote: This may be a cygwin issue but I was hoping to get some answers here as well if someone has fixed this problem before. Basically, I am able to run python scriptname.py python files in command prompt. Unfortunately, I

[issue2234] cygwinccompiler.py fails for latest MinGW releases.

2008-06-13 Thread Jason Tishler
Jason Tishler [EMAIL PROTECTED] added the comment: cygwinccompiler.py only uses the first group: $ fgrep group cygwinccompiler.py gcc_version = StrictVersion(result.group(1)) ld_version = StrictVersion(result.group(1)) dllwrap_version = StrictVersion

[issue2234] cygwinccompiler.py fails for latest MinGW releases.

2008-06-12 Thread Jason Tishler
Jason Tishler [EMAIL PROTECTED] added the comment: I tested the regular expression in #3: (\d+\.\d+(\.(\d+))?([ab](\d+))?) and it worked for both '2.18.50.20080523' '1.2.3a'. Additionally, it worked for the following test cases that I tried: 2.18.50a.20080523 2.18.50a 20080523 2.18.50

[issue2234] cygwinccompiler.py fails for latest MinGW releases.

2008-06-11 Thread Jason Tishler
Jason Tishler [EMAIL PROTECTED] added the comment: There have been three different regular expressions proposed to resolve this issue: 1. http://bugs.python.org/issue2234 2. http://bugs.python.org/issue3013 3. http://cygwin.com/ml/cygwin/2008-05/msg00622.html Does anyone know which one

Re: Invalid Version Number (Distutils from Cygwin)

2008-06-09 Thread Jason Tishler
On Sat, Jun 07, 2008 at 05:34:21PM -0700, newbie73 wrote: [snip] I'm attempting to build a project (FANN libraries) using cygwin (to avoid installing MSVC 2003) and am receiving this error: Traceback (most recent call last): [snip] ValueError: invalid version number '2.18.50.20080523' The

[issue2234] cygwinccompiler.py fails for latest MinGW releases.

2008-04-01 Thread Jason Tishler
Jason Tishler [EMAIL PROTECTED] added the comment: If the version is guaranteed to be x.y or x.y.z, then the patch seems correct. Note I am not set up to test this patch and it has been years since I have looked at this part of the code base. Sorry, that I can't be more helpful

[issue2233] Makefile.pre.in contains extra slash before $(DESTDIR) which can cause Cygwin build to fail

2008-03-04 Thread Jason Tishler
New submission from Jason Tishler: Makefile.pre.in contains extra slash before $(DESTDIR) in two locations as in the following: sharedinstall: $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ --install

Re: socket on cygwin python

2007-06-25 Thread Jason Tishler
On Mon, Jun 25, 2007 at 01:53:18PM +0100, Michael Hoffman wrote: [EMAIL PROTECTED] wrote: I've installed cygwin with latest python 2.5.1, but it seems that the socket lib file do NOT support IPv6(cygwin\lib\python2.5\lib-dynload \_socket.dll), what can I do if I want to use IPv6? I don't

Updated Cygwin Package: python-2.5.1-2

2007-05-21 Thread Jason Tishler
New News: === I have updated the version of Python to 2.5.1-2. The tarballs should be available on a Cygwin mirror near you shortly. The following is the only notable change since the previous release: o include bz2 module that was accidentally omitted in the previous release

Updated Cygwin Package: python-2.5.1-1

2007-05-08 Thread Jason Tishler
New News: === I have updated the version of Python to 2.5.1-1. The tarballs should be available on a Cygwin mirror near you shortly. The following are the only notable changes since the previous release: o upgrade to Python 2.5.1 o change python.exe to be a copy of python2.5.exe

Re: Python Eggs on Cygwin

2007-03-16 Thread Jason Tishler
Kazu, On Thu, Mar 15, 2007 at 05:33:29PM -0700, Kazu Nisimura wrote: import MySQLdb Traceback (most recent call last): File stdin, line 1, in ? File build/bdist.cygwin-1.5.22-i686/egg/MySQLdb/__init__.py, line 19, in ? File build/bdist.cygwin-1.5.22-i686/egg/_mysql.py, line 7, in ?

Updated Cygwin Package: python-2.5-1

2007-03-13 Thread Jason Tishler
New News: === I have updated the version of Python to 2.5-1. The tarballs should be available on a Cygwin mirror near you shortly. The following is the only notable change since the previous release: o upgrade to Python 2.5 Old News: === Python is an interpreted, interactive,

Re: sys.path issue in cygwin

2007-01-24 Thread Jason Tishler
Wang, On Wed, Jan 24, 2007 at 04:14:48PM +0800, Wang Shuhao wrote: I successfully built and installed Python 2.2.3 in cygwin. [snip] Obviously, 'C/lib/python2.2/' is a wrong path. In fact my python is installed in /usr/local/lib/python2.2.3. The result of the issue is that when you run a

Re: sys.path issue in cygwin

2007-01-24 Thread Jason Tishler
Wang, Please keep your replies on-list. On Wed, Jan 24, 2007 at 10:28:51PM +0800, Wang Shuhao wrote: Why not use the Python that is part of the standard Cygwin distribution? Cause the Cygwin version python has the same problem, that why I try to build python from source. The above

Re: Newbie - ? get IDLE going on cygwin

2006-09-13 Thread Jason Tishler
Dave, On Wed, Sep 13, 2006 at 09:42:48AM +, David J. Braden wrote: Thorsten Kampe wrote: * David J. Braden (2006-09-12 18:35 +0100) I can run Python in command-line mode fine from the cygwin shell; the cygwin distribution also includes IDLE, which is apparently completely installed,

Re: Newbie - ? get IDLE going on cygwin

2006-09-13 Thread Jason Tishler
Dave, On Wed, Sep 13, 2006 at 03:33:01PM +, David J. Braden wrote: I can now confirm that, yes, IDLE pops up w/o menus under cygwin. You should be able to workaround this problem by executing idle with the -n option: $ idle -n Jason -- PGP/GPG Key:

Re: Resource temporarily unavailable launching idle under cygwin

2006-08-08 Thread Jason Tishler
Juan C., On Mon, Aug 07, 2006 at 11:47:33AM -0700, jcmendez wrote: Hello everyone. Trying to run idle from a cygwin session on Win2k (yuk, but I must) I'm getting the following error message. [snip] $ idle 23367 [main] python2.4 1668 C:\cygwin\bin\python2.4.exe: *** fatal error -

Updated Cygwin Package: python-2.4.3-1

2006-05-18 Thread Jason Tishler
New News: === I have updated the version of Python to 2.4.3-1. The tarballs should be available on a Cygwin mirror near you shortly. The following are the notable changes since the previous release: o upgrade to Python 2.4.3 o apply SourceForge patch #1490224 to fix the

Re: Problem building extension under Cygwin (ImportError: Bad address)

2006-05-04 Thread Jason Tishler
Lars, On Thu, May 04, 2006 at 03:50:13AM -0700, Lars wrote: I have problems building a simple handcoded C-extension (hello.c) with Cygwin and gcc3.4.4. I hope somebody has encountered the same problem before, and has some advice. [snip] The following works for me: $ gcc -shared

Re: Problem building extension under Cygwin (ImportError: Bad address)

2006-05-04 Thread Jason Tishler
On Thu, May 04, 2006 at 06:23:23AM -0700, Lars wrote: But first compiling hello.c with gcc, then linking it with gnu-ld just won't work. I only really need to compile one C-file to a shared library so it doesn't matter so much for me. But bigger projects will have a problem.. No, it works if

Re: Building python 2.4.2 on Cygwin

2006-02-21 Thread Jason Tishler
Steve, On Mon, Feb 20, 2006 at 11:49:06PM -0500, Stephen Gross wrote: On Mon, Feb 20, 2006 at 12:24:34PM -0800, mrstephengross wrote: Ok, I'm working on building python 2.4.2 on cygwin. I *think* it's version 3.0 or 3.1 (is there a quick way to find out what version of cygwin is running

Re: Building python 2.4.2 on Cygwin

2006-02-21 Thread Jason Tishler
Steve, On Tue, Feb 21, 2006 at 09:31:48AM -0500, Stephen Gross wrote: Just to be sure, what does the following indicate? $ cygcheck -c cygwin Cygwin Package Information Package VersionStatus cygwin 1.5.18-1 OK Try reinstalling Cygwin 1.5.18 or

Re: Building python 2.4.2 on Cygwin

2006-02-20 Thread Jason Tishler
Steve, On Mon, Feb 20, 2006 at 12:24:34PM -0800, mrstephengross wrote: Ok, I'm working on building python 2.4.2 on cygwin. I *think* it's version 3.0 or 3.1 (is there a quick way to find out what version of cygwin is running within a shell?) Use uname -r. What version are you running? Jason

Re: Cygwin IDLE has no menu bar

2006-02-14 Thread Jason Tishler
Steve, On Mon, Feb 13, 2006 at 11:14:03PM -0500, Steve Holden wrote: I just wondered whether anyone has seen this problem: Yes, this is a known problem: http://sf.net/tracker/?func=detailatid=105470aid=786827group_id=5470 and fixed it. Unfortunately, no. Jason -- PGP/GPG Key:

Re: Cannot build Python 2.4.2 for Cygwin

2005-12-28 Thread Jason Tishler
Micheal, On Wed, Dec 28, 2005 at 11:02:55AM -0800, Micheal LeVine wrote: I have not succeeded to build Python 2.4.2 from the source distn for Cygwin on XP (cygwin1.dll version 1005.7.0.0, Cygwin POSIX Emulation DLL). The above is a very old version of Cygwin:

Re: tkinter and cygwin

2005-11-21 Thread Jason Tishler
John, On Mon, Nov 21, 2005 at 08:18:09PM +0900, John wrote: I've recently started learning python programming and have been experimenting with a few basic GUI programs. My work system is cygwin/Windows XP. I use X-windows in cygwin but when I run my python/tkinter program from an x-win

Re: Cygwin font problems

2005-08-28 Thread Jason Tishler
Steve, On Sat, Aug 27, 2005 at 11:43:23PM -0400, Steve Holden wrote: Cygwin runs Python 2.4.1, Windows runs 2.4. Any light on this mystery gratefully received. You may get better traction on the Cygwin mailing list. I recommend trying there. Jason -- PGP/GPG Key:

Re: Socket Support When Compiling Python 2.3.5 On Cygwin

2005-08-26 Thread Jason Tishler
Tom, On Thu, Aug 25, 2005 at 10:39:47AM -0500, [EMAIL PROTECTED] wrote: What do I need to do to make sure that this file will be created with I compile Python 2.3.5? Are there any error messages when the socket module is built during the Python build? If so, then post them to the list. Jason

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-28 Thread Jason Tishler
Dean, On Wed, Jul 27, 2005 at 02:56:16PM -0700, Dean N. Williams wrote: I didn't get this error. Did you forgot to install one of the libdb${version}-devel packages: $ cygcheck -cd | grep 'libdb.*-devel' libdb2-devel2.7.7-4 libdb3.1-devel 3.1.17-2

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-27 Thread Jason Tishler
On Mon, Jul 25, 2005 at 03:02:45PM -0700, [EMAIL PROTECTED] wrote: Let me know when you have it solved. The problem has been fixed in Cygwin CVS: http://cygwin.com/ml/cygwin/2005-07/msg01257.html http://cygwin.com/ml/cygwin-cvs/2005-q3/msg00046.html In the meantime, I have a

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-27 Thread Jason Tishler
Dean, On Wed, Jul 27, 2005 at 12:41:05PM -0700, Dean N. Williams wrote: Thanks for fixing this bug in Cygwin. You are welcome. However, I didn't fix it -- I just got it fixed. :,) Remember there was another undefined variable for the Python build _bsd... I didn't get this error. Did you

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-25 Thread Jason Tishler
Dean, On Mon, Jul 25, 2005 at 05:55:39AM -0700, Dean N. Williams wrote: Is there anyway for me to get back to an older version of Cygwin? What do you mean by the above? An older Cygwin? An older Cygwin Python? An older rebase? See below... [snip] When installing from the internet,

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-25 Thread Jason Tishler
Dean, On Mon, Jul 25, 2005 at 11:27:16AM -0700, Dean N. Williams wrote: I was able to run C:/cygwin/bin/ash.exe. This is good. In the ash.exe window, I ran PATH=/bin rebaseall and received the same error: rebaseall: only ash processes are allowed .. Execute '/bin/rebaseall' from ash. Did

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-25 Thread Jason Tishler
Dean, On Mon, Jul 25, 2005 at 10:49:58AM -0700, Dean N. Williams wrote: For version control and other reasons, it would be nice to be able to build Python from source and it should build from source. How did the Cygwin version build? I built using an older version of Cygwin (i.e, 1.5.12-1).

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-22 Thread Jason Tishler
Dean, On Fri, Jul 22, 2005 at 05:11:45AM -0700, Dean N. Williams wrote: I downloaded your new Cygwin from http://cygwin.com and tried to build install Python/CDAT again. It appears to have built properly, but when I try to execute, it receive a sock error. How do I get around this problem? I

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-22 Thread Jason Tishler
Dean, Please keep your replies on-list. On Fri, Jul 22, 2005 at 08:14:03AM -0700, Dean N. Williams wrote: Is there anyway for me to get back to an older version of Cygwin? What do you mean by the above? An older Cygwin? An older Cygwin Python? An older rebase? In my Python2.4 log file, I

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-19 Thread Jason Tishler
Dean, On Mon, Jul 18, 2005 at 05:59:20AM -0700, Dean N. Williams wrote: Thanks for fixing this problem. You are quite welcome. Thanks for your patience. Jason -- PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-07-18 Thread Jason Tishler
Dean, On Tue, Feb 08, 2005 at 12:55:15PM -0500, Jason Tishler wrote: On Tue, Feb 08, 2005 at 08:01:11AM -0800, Dean N. Williams wrote: $ rebaseall /usr/bin/rebaseall: line 70: [: too many arguments /usr/bin/rebaseall: line 75: [: too many arguments /usr/bin/rebaseall: line 94: $TmpFile

Re: Fwd: how to find the drive in python/cygwin?

2005-04-30 Thread Jason Tishler
Ivan, On Tue, Apr 26, 2005 at 07:02:48PM -0600, Ivan Van Laningham wrote: Use win32api to find drives: cut here #!/usr/bin/python # -*- coding: utf-8 -*- import os import os.path import win32api [snip] AFAICT, the win32api module has not been ported to Cygwin Python. Jason

Re: Fwd: how to find the drive in python/cygwin?

2005-04-30 Thread Jason Tishler
Ivan, On Sat, Apr 30, 2005 at 07:29:32AM -0600, Ivan Van Laningham wrote: Jason Tishler wrote: On Tue, Apr 26, 2005 at 07:02:48PM -0600, Ivan Van Laningham wrote: Use win32api to find drives: cut here #!/usr/bin/python # -*- coding: utf-8 -*- import os import

Re: Fwd: how to find the drive in python/cygwin?

2005-04-30 Thread Jason Tishler
Ivan, On Sat, Apr 30, 2005 at 08:44:55AM -0600, Ivan Van Laningham wrote: Jason Tishler wrote: I was just clarifying that the win32api module is not supported under Cygwin Python. Could you clarify? I always thought that the only thing really different were the default path assumptions

Re: How to compile ScientificPython-2.4.9 under XP cygwin environment?

2005-04-19 Thread Jason Tishler
Zhuanshi, On Sun, Apr 17, 2005 at 08:48:31AM -0700, Zhuanshi He wrote: I try to compile ScientificPython-2.4.9 (http://starship.python.net/~hinsen/ScientificPython/) under Windows XP cygwin environment using python 2.3.3 ,and gcc (GCC) 3.3.3 (cygwin special). The information shows as

Re: Problems compiling PIL under Cygwin

2005-04-04 Thread Jason Tishler
Martin, On Mon, Apr 04, 2005 at 03:46:58PM +0200, Martin Magnusson wrote: I'm trying to build PIL under Cygwin (for use with the Skencil vector graphics program), and I couldn't find a better forum for questions than this. I'm using Python 2.3.4, and when I run python setup.py build_ext -i

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-02-28 Thread Jason Tishler
Dean, On Mon, Feb 28, 2005 at 10:34:20AM -0800, Dean N. Williams wrote: I have a other Cygwin port question. It turns out that the auto-import for XtStrings an widgetClass didn't get resolved. This a similar auto-import resolving error that I got when trying to build Tcl/Tk. I ended up using

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-02-10 Thread Jason Tishler
Dean, On Wed, Feb 09, 2005 at 08:15:43AM -0800, Dean N. Williams wrote: The $ TMP=/tmp rebaseall command worked! Thank you. You are quite welcome. When a new Cygwin is available w/ your changes please let me know... Sorry, but the above does not scale. If you subscribe to cygwin-announce@,

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-02-08 Thread Jason Tishler
Dean, On Tue, Feb 08, 2005 at 08:01:11AM -0800, Dean N. Williams wrote: $ rebaseall /usr/bin/rebaseall: line 70: [: too many arguments /usr/bin/rebaseall: line 75: [: too many arguments /usr/bin/rebaseall: line 94: $TmpFile: ambiguous redirect cannot read /cygdrive/c/Documents On my

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-02-02 Thread Jason Tishler
Dean, On Tue, Feb 01, 2005 at 08:01:13AM -0800, Dean N. Williams wrote: I am getting the following error message from the Python build: Traceback (most recent call last): File string, line 1, in ? File /usr/local/ASD_work/cdat/lib/python2.4/lib-tk/Tkinter.py, line 38, in ? import

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-02-02 Thread Jason Tishler
Dean, Please keep your replies on-list. On Wed, Feb 02, 2005 at 05:06:30AM -0800, Dean N. Williams wrote: It appears that I built the Tcl/Tk libraries, but for some reasons they are not correct. So I am using the Tcl/Tk libraries that were distributed with Cygwin. This seemed to work... Now

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-02-02 Thread Jason Tishler
Dean, Please keep your replies on-list. On Wed, Feb 02, 2005 at 05:14:21AM -0800, Dean N. Williams wrote: I am trying to do the following according to your notes: 3. Due to issues with Cygwin's fork() and DLL base address conflicts, one should rebase their Cygwin system to prevent fork()

Re: Building Python with Tcl/Tk on Cygwin_NT-5.1

2005-02-01 Thread Jason Tishler
Dean, On Tue, Feb 01, 2005 at 02:31:03AM -0800, Dean N. Williams wrote: I am trying to build Python with Tcl/Tk under the Cygwin_NT-5.1 OS. Has anyone done this? Yes, Cygwin Python with _tkinter has been part of the standard Cygwin distribution for over three years:

Re: cygwin python.exe symlink breaks when called from .bat file

2004-12-16 Thread Jason Tishler
George, Please keep your replies on-list. On Wed, Dec 15, 2004 at 01:36:03PM -0500, george young wrote: On Wed, 15 Dec 2004 10:56:17 -0500 Jason Tishler [EMAIL PROTECTED] threw this fish to the penguins: On Wed, Dec 15, 2004 at 07:21:31AM -0800, gry wrote: Under cygwin, the python

Re: cygwin python.exe symlink breaks when called from .bat file

2004-12-15 Thread Jason Tishler
On Wed, Dec 15, 2004 at 07:21:31AM -0800, gry wrote: Under cygwin, the python executable is installed as python2.4.exe with a symbolic link to python.exe. This is fine as long as one is operating only withing the cygwin world. But I execute python from a foo.bat file, and windows barfs on