[issue1584] Mac OS X: building with X11 Tkinter

2013-10-25 Thread Roundup Robot

Roundup Robot added the comment:

New changeset e7474d4d85ca by Ned Deily in branch '2.7':
Issue #1584: Provide options to override default search paths for Tcl and Tk
http://hg.python.org/cpython/rev/e7474d4d85ca

New changeset d7662958b27a by Ned Deily in branch '3.3':
Issue #1584: Provide options to override default search paths for Tcl and Tk
http://hg.python.org/cpython/rev/d7662958b27a

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2013-10-25 Thread Ned Deily

Ned Deily added the comment:

Committed to default for release in 3.4.0.  With the consent of the release 
managers, this change has been backported to 2.7 (for release in 2.7.6) and 3.3 
(for 3.3.3) in support of Issue15663.

--
resolution:  - fixed
stage: patch review - committed/rejected
status: open - closed
versions: +Python 2.7, Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2013-09-06 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 0986e4f5750d by Ned Deily in branch 'default':
Issue #1584: Provide options to override default search paths for Tcl and Tk
http://hg.python.org/cpython/rev/0986e4f5750d

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2013-09-05 Thread Ned Deily

Ned Deily added the comment:

Here's a patch. It is simple-minded but I think it should be powerful enough 
for advanced users to build with non-default Tcl and Tk libraries without 
having to modify the source.  It adds two new options to configure; if used, 
both must be specified:

  ./configure \
  --with-tcltk-includes=-I/opt/local/include \
  --with-tcltk-libs=-L/opt/local/lib -ltcl8.5 -ltk8.5

The values are passed into the top-level setup.py and override the default 
searches and values for include_dirs and libraries when building _tkinter.so.

In addition, the options can be overridden with make.  This can be useful when 
testing tkinter with different versions of Tcl/Tk:

   ./configure
   make
   make test  # test with platform default Tcl/Tk
   ( cd ./build/lib.xx  mv _tkinter.so _tkinter.so.default )
   make \
   TCLTK_INCLUDES=-I/opt/local/include \
   TCLTK_LIBS=-L/opt/local/lib -ltcl8.6 -ltk8.6
   make test  # test with another version of Tcl/Tk

I have some more testing to do on other platforms but, unless there are major 
objections, I intend to commit this soon for use with Issue15663.

--
components:  -Macintosh
keywords: +patch
stage: needs patch - patch review
Added file: http://bugs.python.org/file31600/issue1584_rev0.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2013-03-13 Thread Ezio Melotti

Changes by Ezio Melotti ezio.melo...@gmail.com:


--
versions: +Python 3.4 -Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2013-01-03 Thread Samuel John

Samuel John added the comment:

Hello from Homebrew (Mac)!

Indeed we also patch setup.py (but right now only for python2.7) and 
uncommented the detect_tkinter_darwin related lines to support linking 
against a Tkinter build with homebrew (optionally with X11 support).

(Our patch: https://github.com/mxcl/homebrew/pull/16626/files#L0R270)

I agree that an option to tell setup.py to use another Tk would be much 
appreciated.

--
nosy: +samueljohn

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2012-04-03 Thread Andrew Svetlov

Andrew Svetlov andrew.svet...@gmail.com added the comment:

Is there actual?

--
nosy: +asvetlov
versions: +Python 3.3 -Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2012-04-03 Thread Ned Deily

Ned Deily n...@acm.org added the comment:

It certainly is still possible to patch current Pythons to build with the X11 
Tk 8.5 on OS X.  For example, the current MacPorts Python ports use an X11 Tk 
8.5.  Considering all the issues that have arisen with the other Tcl/Tk 
implementations on OS X (i.e. Cocoa Tk and Carbon Tk), I think it would be 
useful to provide better support for choosing which to build with.  I'll take a 
look at this as a possible feature.

--
assignee:  - ned.deily
nosy: +ned.deily -BreamoreBoy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2012-04-03 Thread Andrew Svetlov

Andrew Svetlov andrew.svet...@gmail.com added the comment:

Thank you, Ned.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2010-09-20 Thread C. E. Ball

C. E. Ball ceb...@users.sf.net added the comment:

Sorry, I don't have a Mac, and I don't have access to one that I could use to 
make a patch. 

At the time, I was trying to support OS X users of a piece of Python/Tkinter 
software. Please do not keep this issue open on my account.

Thanks,
Chris

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2010-09-18 Thread Mark Lawrence

Mark Lawrence breamore...@yahoo.co.uk added the comment:

This will go nowhere unless someone supplies a patch.

--
nosy: +BreamoreBoy
versions: +Python 3.2 -Python 2.7, Python 3.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2009-09-06 Thread Ronald Oussoren

Changes by Ronald Oussoren ronaldousso...@mac.com:


--
stage:  - needs patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2009-03-30 Thread Ronald Oussoren

Ronald Oussoren ronaldousso...@mac.com added the comment:

Adding support for building an X11 version of Tkinter would require an 
explicit flag to configure, defaulting to a build that uses AquaTk (which 
most people would like to use).

I'm not interested in creating a patch for this, but am willing to review 
patches for this.

--
nosy: +ronaldoussoren

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2009-03-29 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

Reopening since additional feedback was provided clarifying the request.

How does this request interact with the business about building the Mac
installer with a local tk installed?  Does the fact that that does
something useful mean that this request is in fact out of date?  Looking
at the setup.py comments, I suspect not.

--
nosy: +bitdancer
resolution: out of date - 
status: pending - open
type: behavior - feature request
versions: +Python 2.7, Python 3.1 -Python 2.5

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1584
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2007-12-11 Thread Christian Heimes

Christian Heimes added the comment:

The problem is already fixed in svn. Can you download a svn checkout and
verify it that the code is working?

41848 skip.montanaro if (platform == 'darwin' and

--
nosy: +tiran
priority:  - normal
resolution:  - out of date
status: open - pending

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1584
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2007-12-11 Thread Georg Brandl

Georg Brandl added the comment:

Crys: look closely at the diff, the 0 and  is in the modified file.

--
nosy: +georg.brandl

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1584
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1584] Mac OS X: building with X11 Tkinter

2007-12-10 Thread C. E. Ball

New submission from C. E. Ball:

On OS X, I wanted to build my own copy of Python that used my own copy
of Tkinter (built for X11). 

To do this, I passed LDFLAGS=-rpath,/path/to/lib to configure so that
Python could find my specific lib files, but I also had to edit Python's
setup.py so that detect_tkinter() would not do anything special for Darwin:

$ diff setup.py original_setup.py 
1199c1199
 if 0 and (platform == 'darwin' and
---
 if (platform == 'darwin' and


I did this based on a post by Ronald Oussoren to the Python-SIG Mac
mailing list [http://article.gmane.org/gmane.comp.python.apple/14008].
He also suggested that I file a bug report, asking for an argument to be
added to python's configure script to avoid having to edit setup.py.

Thanks

--
components: Build, Macintosh, Tkinter
messages: 58413
nosy: ceball
severity: minor
status: open
title: Mac OS X: building with X11 Tkinter
type: behavior
versions: Python 2.5

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1584
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com